diff options
| author | Laurent Vivier | 2013-08-30 01:46:41 +0200 |
|---|---|---|
| committer | Riku Voipio | 2013-09-24 09:47:06 +0200 |
| commit | f57d419241e7c7cce5d11172081a5860e86aa8bc (patch) | |
| tree | 89b55a02a73c2895c7f3634309aee67accfafb03 /linux-user/syscall_defs.h | |
| parent | linux-user: convert /proc/net/route when endianess differs (diff) | |
| download | qemu-f57d419241e7c7cce5d11172081a5860e86aa8bc.tar.gz qemu-f57d419241e7c7cce5d11172081a5860e86aa8bc.tar.xz qemu-f57d419241e7c7cce5d11172081a5860e86aa8bc.zip | |
linux-user: Add setsockopt(SO_ATTACH_FILTER)
This is needed to be able to run dhclient.
Signed-off-by: Laurent Vivier <laurent@vivier.eu>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user/syscall_defs.h')
| -rw-r--r-- | linux-user/syscall_defs.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/linux-user/syscall_defs.h b/linux-user/syscall_defs.h index 2ebe3560d7..5f53a28d1b 100644 --- a/linux-user/syscall_defs.h +++ b/linux-user/syscall_defs.h @@ -119,6 +119,18 @@ struct target_sockaddr { uint8_t sa_data[14]; }; +struct target_sock_filter { + abi_ushort code; + uint8_t jt; + uint8_t jf; + abi_uint k; +}; + +struct target_sock_fprog { + abi_ushort len; + abi_ulong filter; +}; + struct target_in_addr { uint32_t s_addr; /* big endian */ }; |
