about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
authorptitSeb <sebastien.chev@gmail.com>2021-07-05 14:16:53 +0200
committerptitSeb <sebastien.chev@gmail.com>2021-07-05 14:16:53 +0200
commit13e574db3f10f25456fcafa43f8ae3d55f4323c9 (patch)
tree4006d703d12c390d440fd34110d1322075448afe /src
parent7bd4aae43337a3976c9bc3fac9cfbb32c1c09821 (diff)
downloadbox64-13e574db3f10f25456fcafa43f8ae3d55f4323c9.tar.gz
box64-13e574db3f10f25456fcafa43f8ae3d55f4323c9.zip
Added syscalls 42 and 43 (for #14)
Diffstat (limited to 'src')
-rwxr-xr-xsrc/emu/x64syscall.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/emu/x64syscall.c b/src/emu/x64syscall.c
index 4e661b51..cfca1ea1 100755
--- a/src/emu/x64syscall.c
+++ b/src/emu/x64syscall.c
@@ -92,6 +92,8 @@ scwrap_t syscallwrap[] = {
     //{ 25, __NR_mremap, 5},    // wrapped to track protection
     { 39, __NR_getpid, 0},
     { 41, __NR_socket, 3},
+    { 42, __NR_connect, 3},
+    { 43, __NR_accept, 3},
     { 44, __NR_sendto, 6},
     { 45, __NR_recvfrom, 6},
     { 46, __NR_sendmsg, 3},