mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 15:17:36 +00:00
UserspaceEmulator: Implement the accept() and setsockopt() syscalls
It's now possible to run LookupServer in UE (by setting up SystemServer to run the service inside UE.) No bugs found, but very cool! :^)
This commit is contained in:
parent
f097ed6ada
commit
368cea4094
2 changed files with 37 additions and 1 deletions
|
@ -113,7 +113,9 @@ private:
|
|||
int virt$lseek(int fd, off_t offset, int whence);
|
||||
int virt$socket(int, int, int);
|
||||
int virt$getsockopt(FlatPtr);
|
||||
int virt$setsockopt(FlatPtr);
|
||||
int virt$select(FlatPtr);
|
||||
int virt$accept(int sockfd, FlatPtr address, FlatPtr address_length);
|
||||
int virt$bind(int sockfd, FlatPtr address, socklen_t address_length);
|
||||
int virt$recvfrom(FlatPtr);
|
||||
int virt$connect(int sockfd, FlatPtr address, socklen_t address_size);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue