io6Library icon indicating copy to clipboard operation
io6Library copied to clipboard

io6Library is the integrated library for dual TCP/IP statck contorller such as W6100.

Results 4 io6Library issues
Sort by recently updated
recently updated
newest added

SOCK_IO_NONBLOCK is not a socket flag option for `socket()`, as used here in loopback.c: https://github.com/Wiznet/io6Library/blob/a52bd527491b8c7e1bcfdd6f54eb00fdb7a44c9b/Application/loopback/loopback.c#L141 It should be SF_IO_NONBLOCK. However, the change introduced here means that only SOCK_IO_NONBLOCK will set...

Is there reason for not using `memset` and `memcpy` instead of zeroing/copying of 16 elements of array? Like this: DHCP_allocated_ip[0] = 0; DHCP_allocated_ip[1] = 0; DHCP_allocated_ip[2] = 0; DHCP_allocated_ip[3] =...