Answer Posted / 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 |
Post New Answer View All Answers
What is a socket address?
What is the difference between read() and recv()?
Why do I get EPROTO from read()?
What is a socket set used for?
What is the difference between a socket and a port?
What is difference between socket and websocket?
What exactly is a socket?
What is af_inet in socket?
What does af mean in sockets?
How does unix socket work?
How does a socket work?
Can a socket have multiple ports?
Why do we need sockets?
Can multiple sockets use the same port?
Is a socket a file?