mirror of
https://github.com/optim-enterprises-bv/nDPId.git
synced 2025-11-02 03:07:49 +00:00
introduced NETWORK_BUFFER_MAX_SIZE to replace BUFSIZ as this might change depending on the arch/libc used
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
This commit is contained in:
@@ -16,7 +16,7 @@ int main(void)
|
||||
int sockfd = socket(AF_INET, SOCK_STREAM, 0);
|
||||
struct sockaddr_in remote_addr = {};
|
||||
socklen_t remote_addrlen = sizeof(remote_addr);
|
||||
uint8_t buf[BUFSIZ];
|
||||
uint8_t buf[NETWORK_BUFFER_MAX_SIZE];
|
||||
//size_t buf_used = 0;
|
||||
//unsigned long long int buf_wanted = 0;
|
||||
|
||||
@@ -45,7 +45,7 @@ int main(void)
|
||||
break;
|
||||
}
|
||||
|
||||
printf("RECV[%zd]: '%.*s'\n", bytes_read, (int) bytes_read, buf);
|
||||
printf("RECV[%zd]: '%.*s'\n\n", bytes_read, (int) bytes_read, buf);
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user