Content deleted Content added
AF is Address Family, PF is Protocol Family; one should use PF for the 'socket()' function's '___domain' argument and AF for the struct sockaddr_in. Reference for this added. Tag: Reverted |
See previous edit. PF for socket(), AF for struct sockaddr_in. (Or struct sockaddr_un. For any socket address.) Tag: Reverted |
||
Line 208:
int return_value;
server_socket_fd = socket(
if ( server_socket_fd == -1 ) assert( 0 );
|