What is with the second parameter in bind()?
Answer / chaitanya
The man page shows it as "struct sockaddr *my_addr". The sockaddr struct though is just a place holder for the structure it really wants. You have to pass different structures depending on what kind of socket you have. For an AF_INET socket, you need the sockaddr_in structure. It has three fields of interest:
sin_family
Set this to AF_INET.
sin_port
The network byte-ordered 16 bit port number
sin_addr
The host's ip number.
This is a struct in_addr,
which contains only one field,
s_addr which is a u_long.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is a socket api?
What is the function of socket?
How can I tell when a socket is closed on the other end?
Can a socket have multiple ports?
What are socket exceptions? What is out-of-band data?
What are the types of sockets?
Why does connect() succeed even before my server did an accept()?
What exactly is a socket?
Is there any advantage to handling the signal, rather than just ignoring it and checking for the EPIPE error? Are there any useful parameters passed to the signal catching function?
Is socket a hardware or software?
What is difference between socket and websocket?
How can I find the full hostname (FQDN) of the system I am running on?