📄 socket.c
字号:
/* Redefinition of the open system call, so that we can mark it * as non-blocking and asynchronous */#include <sys/types.h>#include <sys/stat.h>#include <sys/socket.h>#include <fcntl.h>int __wrap_socket(int domain, int type, int protocol){ int fd, ret; fd = __real_socket(domain, type, protocol); if (fd == -1) return -1; return setupFileDesc(fd, 0);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -