diff mbox

[v2,03/16] linux-user: support SO_{SND, RCV}BUFFORCE setsockopt options

Message ID 1403391191-18603-4-git-send-email-paul@archlinuxmips.org
State New
Headers show

Commit Message

Paul Burton June 21, 2014, 10:52 p.m. UTC
Translate the SO_SNDBUFFORCE & SO_RCVBUFFORCE options to setsockopt to
the host values & perform the syscall as expected, allowing use of those
options by target programs.

Signed-off-by: Paul Burton <paul@archlinuxmips.org>
---
Changes in v2:
  - None.
---
 linux-user/syscall.c | 6 ++++++
 1 file changed, 6 insertions(+)
diff mbox

Patch

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index dba5b4d..ce1ea1f 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -1500,9 +1500,15 @@  set_timeout:
         case TARGET_SO_SNDBUF:
 		optname = SO_SNDBUF;
 		break;
+        case TARGET_SO_SNDBUFFORCE:
+		optname = SO_SNDBUFFORCE;
+		break;
         case TARGET_SO_RCVBUF:
 		optname = SO_RCVBUF;
 		break;
+        case TARGET_SO_RCVBUFFORCE:
+		optname = SO_RCVBUFFORCE;
+		break;
         case TARGET_SO_KEEPALIVE:
 		optname = SO_KEEPALIVE;
 		break;