2025-02-27 17:59:18 +08:00

12 lines
185 B
C++
Executable File

#ifdef RTP_SOCKETTYPE_WINSOCK
#include <winsock2.h>
#else
#include <sys/types.h>
#include <sys/socket.h>
#endif // RTP_SOCKETTYPE_WINSOCK
int main(void)
{
return MSG_NOSIGNAL;
}