diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-12-14 20:51:17 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-12-14 20:51:17 +0000 |
commit | ea1c73234283ff4de8a029763c11267c42664fb9 (patch) | |
tree | 96e99a91b9a6301965d53338a6fca4bda129a9dc /sys/compat/linux/linux_socket.c | |
parent | a775aae9a46c4edf86fca31035df74445c987006 (diff) |
support IP_HDRINCL
Diffstat (limited to 'sys/compat/linux/linux_socket.c')
-rw-r--r-- | sys/compat/linux/linux_socket.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/compat/linux/linux_socket.c b/sys/compat/linux/linux_socket.c index 7d7d721988a..43d64c7a8ae 100644 --- a/sys/compat/linux/linux_socket.c +++ b/sys/compat/linux/linux_socket.c @@ -1,4 +1,4 @@ -/* $OpenBSD: linux_socket.c,v 1.8 1997/12/10 12:44:38 provos Exp $ */ +/* $OpenBSD: linux_socket.c,v 1.9 1997/12/14 20:51:16 deraadt Exp $ */ /* $NetBSD: linux_socket.c,v 1.14 1996/04/05 00:01:50 christos Exp $ */ /* @@ -571,6 +571,8 @@ linux_to_bsd_ip_sockopt(lopt) return IP_ADD_MEMBERSHIP; case LINUX_IP_DROP_MEMBERSHIP: return IP_DROP_MEMBERSHIP; + case LINUX_IP_HDRINCL: + return IP_HDRINCL; default: return -1; } |