mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 21:37:35 +00:00
Kernel: More sockets work. Fleshing out accept().
This commit is contained in:
parent
1d66670ad7
commit
54b1d6f57f
7 changed files with 103 additions and 9 deletions
|
@ -221,7 +221,7 @@ public:
|
|||
int sys$socket(int domain, int type, int protocol);
|
||||
int sys$bind(int sockfd, const sockaddr* addr, socklen_t);
|
||||
int sys$listen(int sockfd, int backlog);
|
||||
int sys$accept(int sockfd, sockaddr*, socklen_t);
|
||||
int sys$accept(int sockfd, sockaddr*, socklen_t*);
|
||||
int sys$connect(int sockfd, const sockaddr*, socklen_t);
|
||||
|
||||
DisplayInfo set_video_resolution(int width, int height);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue