|
|
|
Example:
in_addr.sin_family = AF_INET;
in_addr.sin_addr.s_addr = htonl(INADDR_ANY);
in_addr.sin_port = htons( 0 ); /* Let system assign port # */
^^^
if ( bind(s, (struct sockaddr *)&in_addr, sizeof(in_addr)) != 0 )
perror("Bind: ");
|
Use port = 0 in the arguments