[招生]科锐逆向工程师培训(2024年11月15日实地,远程教学同时开班, 第51期)
void main (void) { int fd = socket( AF_INET, SOCK_STREAM, 0 ); int type; int length = sizeof( int ); getsockopt( fd, SOL_SOCKET, SO_TYPE, &type, &length ); if (type == SOCK_STREAM) puts( "It's a TCP socket." ); else puts ("Wait... what happened?"); }
sidyhe void main (void) { int&n ...