12 lines
185 B
C++
Raw Permalink Normal View History

2025-02-27 17:59:18 +08:00
#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;
}