diff options
author | Raimo Niskanen <[email protected]> | 2011-09-20 09:27:02 +0200 |
---|---|---|
committer | Raimo Niskanen <[email protected]> | 2011-11-16 11:07:12 +0100 |
commit | bfb350ecc30d44e64ed75512690a0e4fbbb6bc2a (patch) | |
tree | 85db50778fce25dabab5800441077249f4839c59 /lib | |
parent | d0d13063fb27e185759c02e6b2e119f1c07035fd (diff) | |
download | otp-bfb350ecc30d44e64ed75512690a0e4fbbb6bc2a.tar.gz otp-bfb350ecc30d44e64ed75512690a0e4fbbb6bc2a.tar.bz2 otp-bfb350ecc30d44e64ed75512690a0e4fbbb6bc2a.zip |
erts,kernel: Rename operations common to TCP and SCTP
Diffstat (limited to 'lib')
-rw-r--r-- | lib/kernel/src/inet_int.hrl | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/kernel/src/inet_int.hrl b/lib/kernel/src/inet_int.hrl index 6f1688c6a2..9154e90e1f 100644 --- a/lib/kernel/src/inet_int.hrl +++ b/lib/kernel/src/inet_int.hrl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1997-2010. All Rights Reserved. +%% Copyright Ericsson AB 1997-2011. 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 @@ -83,15 +83,17 @@ -define(INET_REQ_IFSET, 23). -define(INET_REQ_SUBSCRIBE, 24). -define(INET_REQ_GETIFADDRS, 25). +-define(INET_REQ_ACCEPT, 26). +-define(INET_REQ_LISTEN, 27). %% TCP requests --define(TCP_REQ_ACCEPT, 40). --define(TCP_REQ_LISTEN, 41). +%%-define(TCP_REQ_ACCEPT, 40). MOVED +%%-define(TCP_REQ_LISTEN, 41). MERGED -define(TCP_REQ_RECV, 42). -define(TCP_REQ_UNRECV, 43). -define(TCP_REQ_SHUTDOWN, 44). %% UDP and SCTP requests -define(PACKET_REQ_RECV, 60). --define(SCTP_REQ_LISTEN, 61). +%%-define(SCTP_REQ_LISTEN, 61). MERGED -define(SCTP_REQ_BINDX, 62). %% Multi-home SCTP bind %% subscribe codes, INET_REQ_SUBSCRIBE |