On Sat, Apr 21, 2018 at 6:20 PM, Mark Geisert wrote:
> R0b0t1 wrote:
>>
>> The following never prints "Hello, world!"
>>
>>
>> struct sboot_state {
>> struct sockaddr_in haddr;
>> struct sockaddr caddr;
>> socklen_t clen;
>> int sfd, cfd;
>> } state = { 0 };
>>
>> state.haddr.sin_f
R0b0t1 wrote:
The following never prints "Hello, world!"
struct sboot_state {
struct sockaddr_in haddr;
struct sockaddr caddr;
socklen_t clen;
int sfd, cfd;
} state = { 0 };
state.haddr.sin_family = AF_INET;
state.haddr.sin_port = 2200;
You can use the Windows 'netstat' to se
The following never prints "Hello, world!"
struct sboot_state {
struct sockaddr_in haddr;
struct sockaddr caddr;
socklen_t clen;
int sfd, cfd;
} state = { 0 };
state.haddr.sin_family = AF_INET;
state.haddr.sin_port = 2200;
state.haddr.sin_addr.s_addr = INADDR_ANY;
state.sfd = so
3 matches
Mail list logo