| 74 | } |
| 75 | |
| 76 | int |
| 77 | ff_linux_socket(int domain, int type, int protocol) |
| 78 | { |
| 79 | ERR_LOG("ff_linux_socket, domain:%d, type:%d, protocol:%d\n", domain, type, protocol); |
| 80 | SYSCALL(socket, (domain, type, protocol)); |
| 81 | } |
| 82 | |
| 83 | int |
| 84 | ff_linux_bind(int s, const struct sockaddr *addr, |