diff options
author | Raimo Niskanen <[email protected]> | 2012-10-12 09:42:08 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2012-10-31 09:14:44 +0100 |
commit | 654e820db89c42eb30c3c4b4f1be747265df1e10 (patch) | |
tree | 043bf505754d8781deabf85302afd55d01c07fa4 /lib/kernel/src/inet_int.hrl | |
parent | 487ff0f54a3a311d1e3f79ae5be5e6b4a9c2f40c (diff) | |
download | otp-654e820db89c42eb30c3c4b4f1be747265df1e10.tar.gz otp-654e820db89c42eb30c3c4b4f1be747265df1e10.tar.bz2 otp-654e820db89c42eb30c3c4b4f1be747265df1e10.zip |
erts,kernel: Implement socket option ipv6_v6only in erlang code
Diffstat (limited to 'lib/kernel/src/inet_int.hrl')
-rw-r--r-- | lib/kernel/src/inet_int.hrl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/kernel/src/inet_int.hrl b/lib/kernel/src/inet_int.hrl index 467c4d5065..6d808b54cd 100644 --- a/lib/kernel/src/inet_int.hrl +++ b/lib/kernel/src/inet_int.hrl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2011. All Rights Reserved. +%% Copyright Ericsson AB 1997-2012. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -124,6 +124,7 @@ -define(UDP_OPT_MULTICAST_LOOP, 13). -define(UDP_OPT_ADD_MEMBERSHIP, 14). -define(UDP_OPT_DROP_MEMBERSHIP, 15). +-define(INET_OPT_IPV6_V6ONLY, 16). % "Local" options: codes start from 20: -define(INET_LOPT_BUFFER, 20). -define(INET_LOPT_HEADER, 21). |