diff options
author | Ivan Skytte Jorgensen <isj-sctp@i1.dk> | 2005-10-28 18:10:00 -0400 |
---|---|---|
committer | Sridhar Samudrala <sri@us.ibm.com> | 2005-10-28 18:10:00 -0400 |
commit | eaa5c54dbec70e2a93d6ed412bb589bbf9c90a17 (patch) | |
tree | 4047a75f7f74d978bad9c4862afbd47c8cda595a /include/net | |
parent | 741b2252a5e14d6c60a913c77a6099abe73a854a (diff) |
[SCTP] Rename SCTP specific control message flags.
Rename SCTP specific control message flags to use SCTP_ prefix rather than
MSG_ prefix as per the latest sctp sockets API draft.
Signed-off-by: Ivan Skytte Jorgensen <isj-sctp@i1.dk>
Signed-off-by: Sridhar Samudrala <sri@us.ibm.com>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/sctp/user.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/net/sctp/user.h b/include/net/sctp/user.h index 1c5f19f995ad..f1c3bc54526a 100644 --- a/include/net/sctp/user.h +++ b/include/net/sctp/user.h | |||
@@ -171,10 +171,10 @@ struct sctp_sndrcvinfo { | |||
171 | */ | 171 | */ |
172 | 172 | ||
173 | enum sctp_sinfo_flags { | 173 | enum sctp_sinfo_flags { |
174 | MSG_UNORDERED = 1, /* Send/receive message unordered. */ | 174 | SCTP_UNORDERED = 1, /* Send/receive message unordered. */ |
175 | MSG_ADDR_OVER = 2, /* Override the primary destination. */ | 175 | SCTP_ADDR_OVER = 2, /* Override the primary destination. */ |
176 | MSG_ABORT=4, /* Send an ABORT message to the peer. */ | 176 | SCTP_ABORT=4, /* Send an ABORT message to the peer. */ |
177 | /* MSG_EOF is already defined per socket.h */ | 177 | SCTP_EOF=MSG_FIN, /* Initiate graceful shutdown process. */ |
178 | }; | 178 | }; |
179 | 179 | ||
180 | 180 | ||