| 31 | } |
| 32 | |
| 33 | int SendtoWrapper( |
| 34 | _In_ SOCKET s, |
| 35 | _In_ const char *buf, |
| 36 | _In_ int len, |
| 37 | _In_ int flags, |
| 38 | _In_ const struct sockaddr *to, |
| 39 | _In_ int tolen |
| 40 | ) |
| 41 | { |
| 42 | Debug(L"sendto"); |
| 43 | return WrappedSendto(s, buf, len, flags, to, tolen); |
| 44 | } |
| 45 | |
| 46 | int WSASendWrapper( |
| 47 | _In_ SOCKET s, |