mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
Replaced logging tags with lower case in tcp_transport component to unite all tags under common structure.
This commit is contained in:
parent
c7558690ca
commit
0013ad5bb9
@ -15,7 +15,7 @@
|
|||||||
#include "esp_transport_internal.h"
|
#include "esp_transport_internal.h"
|
||||||
#include "esp_transport.h"
|
#include "esp_transport.h"
|
||||||
|
|
||||||
static const char *TAG = "TRANSPORT";
|
static const char *TAG = "transport";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* This list will hold all transport available
|
* This list will hold all transport available
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
#include "esp_transport_internal.h"
|
#include "esp_transport_internal.h"
|
||||||
|
|
||||||
static const char *TAG = "TRANSPORT";
|
static const char *TAG = "transport";
|
||||||
struct timeval* esp_transport_utils_ms_to_timeval(int timeout_ms, struct timeval *tv)
|
struct timeval* esp_transport_utils_ms_to_timeval(int timeout_ms, struct timeval *tv)
|
||||||
{
|
{
|
||||||
if (timeout_ms == -1) {
|
if (timeout_ms == -1) {
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
transport_esp_tls_t *ssl = ssl_get_context_data(t); \
|
transport_esp_tls_t *ssl = ssl_get_context_data(t); \
|
||||||
if (!ssl) { return; }
|
if (!ssl) { return; }
|
||||||
|
|
||||||
static const char *TAG = "TRANSPORT_BASE";
|
static const char *TAG = "transport_base";
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
TRANS_SSL_INIT = 0,
|
TRANS_SSL_INIT = 0,
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
#include "errno.h"
|
#include "errno.h"
|
||||||
#include "esp_tls_crypto.h"
|
#include "esp_tls_crypto.h"
|
||||||
|
|
||||||
static const char *TAG = "TRANSPORT_WS";
|
static const char *TAG = "transport_ws";
|
||||||
|
|
||||||
#define WS_BUFFER_SIZE CONFIG_WS_BUFFER_SIZE
|
#define WS_BUFFER_SIZE CONFIG_WS_BUFFER_SIZE
|
||||||
#define WS_FIN 0x80
|
#define WS_FIN 0x80
|
||||||
|
Loading…
Reference in New Issue
Block a user