|
Server : Apache/2.2.2 (Fedora) System : Linux App1.pathumtani.go.th 2.6.20-1.2320.fc5smp #1 SMP Tue Jun 12 19:40:16 EDT 2007 i686 User : apache ( 48) PHP Version : 5.2.9 Disable Function : NONE Directory : /proc/self/root/proc/self/root/usr/include/linux/ |
Upload File : |
/* * Definitions for the SECurity layer * * Author: * Robert Muchsel <muchsel@acm.org> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version * 2 of the License, or (at your option) any later version. */ #ifndef _LINUX_IPSEC_H #define _LINUX_IPSEC_H #include <linux/config.h> #include <linux/socket.h> #include <net/sock.h> /* Values for the set/getsockopt calls */ /* These defines are compatible with NRL IPv6, however their semantics is different */ #define IPSEC_LEVEL_NONE -1 /* send plaintext, accept any */ #define IPSEC_LEVEL_DEFAULT 0 /* encrypt/authenticate if possible */ /* the default MUST be 0, because a */ /* socket is initialized with 0's */ #define IPSEC_LEVEL_USE 1 /* use outbound, don't require inbound */ #define IPSEC_LEVEL_REQUIRE 2 /* require both directions */ #define IPSEC_LEVEL_UNIQUE 2 /* for compatibility only */ #endif /* _LINUX_IPSEC_H */