Merge 902ba2f7dc into b99ab16ad5
This commit is contained in:
commit
968841a9cb
2 changed files with 3 additions and 3 deletions
|
|
@ -396,7 +396,7 @@ CO_ReturnError_t CO_epoll_createGtw(CO_epoll_gtw_t *epGtw,
|
|||
int epoll_fd,
|
||||
int32_t commandInterface,
|
||||
uint32_t socketTimeout_ms,
|
||||
char *localSocketPath)
|
||||
const char *localSocketPath)
|
||||
{
|
||||
int ret;
|
||||
struct epoll_event ev = {0};
|
||||
|
|
|
|||
|
|
@ -237,7 +237,7 @@ typedef struct {
|
|||
/** Socket timeout timer in microseconds */
|
||||
uint32_t socketTimeoutTmr_us;
|
||||
/** Path in case of local socket */
|
||||
char *localSocketPath;
|
||||
const char *localSocketPath;
|
||||
/** Gateway socket file descriptor */
|
||||
int gtwa_fdSocket;
|
||||
/** Gateway io stream file descriptor */
|
||||
|
|
@ -265,7 +265,7 @@ CO_ReturnError_t CO_epoll_createGtw(CO_epoll_gtw_t *epGtw,
|
|||
int epoll_fd,
|
||||
int32_t commandInterface,
|
||||
uint32_t socketTimeout_ms,
|
||||
char *localSocketPath);
|
||||
const char *localSocketPath);
|
||||
|
||||
/**
|
||||
* Close gateway-ascii sockets
|
||||
|
|
|
|||
Loading…
Reference in a new issue