vote up 1 vote down star
1

I have a port that is bind()'d to INADDR_ANY. I am receiving datagrams successfully. After receipt, I need to read the IP header to get the source IP address.

flag

67% accept rate

2 Answers

vote up 3 vote down check

I don't believe you can get it if you're using the standard recv or read function calls. The recvfrom call as follows:

int recvfrom(
  __in         SOCKET s,
  __out        char *buf,
  __in         int len,
  __in         int flags,
  __out        struct sockaddr *from,
  __inout_opt  int *fromlen
);

includes a structure (the second to last field above) which will receive the source address which you can examine for whatever purposes you desire.

link|flag
vote up 0 vote down

won't work it is filter to receive a message not the address of coming packet

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.