blob: 5661ad05137febb148a593c58e022588aa2a744e (
plain)
1
2
3
4
5
6
7
8
9
|
#include "../socket.h"
typedef struct SYS_BIND_PARAMS {
int sockfd;
const struct sockaddr *addr;
socklen_t addrlen;
} __attribute__((packed)) SYS_BIND_PARAMS;
int syscall_bind(SYS_BIND_PARAMS *args);
|