small len fixes
This commit is contained in:
parent
fa55ece029
commit
fb7294ed26
@ -503,7 +503,7 @@ g_tcp_close(int sck)
|
|||||||
#if defined(_WIN32)
|
#if defined(_WIN32)
|
||||||
closesocket(sck);
|
closesocket(sck);
|
||||||
#else
|
#else
|
||||||
g_write_ip_address(sck,ip,256);
|
g_write_ip_address(sck,ip,255);
|
||||||
log_message(LOG_LEVEL_INFO,"An established connection closed to endpoint: %s", ip);
|
log_message(LOG_LEVEL_INFO,"An established connection closed to endpoint: %s", ip);
|
||||||
close(sck);
|
close(sck);
|
||||||
#endif
|
#endif
|
||||||
@ -654,7 +654,7 @@ g_tcp_accept(int sck)
|
|||||||
ret = accept(sck, (struct sockaddr *)&s, &i);
|
ret = accept(sck, (struct sockaddr *)&s, &i);
|
||||||
if(ret>0)
|
if(ret>0)
|
||||||
{
|
{
|
||||||
snprintf(ipAddr,256,"A connection received from: %s port %d"
|
snprintf(ipAddr,255,"A connection received from: %s port %d"
|
||||||
,inet_ntoa(s.sin_addr),ntohs(s.sin_port));
|
,inet_ntoa(s.sin_addr),ntohs(s.sin_port));
|
||||||
log_message(LOG_LEVEL_INFO,ipAddr);
|
log_message(LOG_LEVEL_INFO,ipAddr);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user