1 2 3 4 5 6 7 8
#include <sys/types.h> #include <sys/socket.h> #include "socket.h" int socket_listen(int s,int backlog) { return listen(s,backlog); }