|
Jump to my own send function as follows:
int WINAPI Mysend(SOCKET s, char FAR *buff, int len, int flags)
{
int nReturn;
//You can operate the buff here
...................
nReturn = send(s, buff, len, flags);
...................
//How do I get the source IP and port number, destination IP and port number here??????
return(nReturn);
} |
|