diff options
author | Marco Varlese <marco.varlese@suse.com> | 2018-02-15 17:01:56 +0100 |
---|---|---|
committer | Damjan Marion <dmarion.lists@gmail.com> | 2018-02-17 09:45:28 +0000 |
commit | 54432f8c0ac1f680198afa6047ce74bc4a126f21 (patch) | |
tree | 472bcb2609160a17e285d97d0d1b484baa332af8 /src/vnet/sctp/sctp_packet.h | |
parent | a250882b8fbc3f75d919bffaea10809a37205204 (diff) |
SCTP: 'multi-home' support
This patch addresses the SCTP requirement for multiple sub-connections
to implement the so called 'multi-homed' scenario.
Change-Id: Ibce18f216e9d2bebe318992c441bf278e16aad17
Signed-off-by: Marco Varlese <marco.varlese@suse.com>
Diffstat (limited to 'src/vnet/sctp/sctp_packet.h')
-rw-r--r-- | src/vnet/sctp/sctp_packet.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/vnet/sctp/sctp_packet.h b/src/vnet/sctp/sctp_packet.h index 3ca05b5a11e..9419c16241a 100644 --- a/src/vnet/sctp/sctp_packet.h +++ b/src/vnet/sctp/sctp_packet.h @@ -268,13 +268,13 @@ typedef struct #define CHUNK_FLAGS_MASK 0x00FF0000 #define CHUNK_FLAGS_SHIFT 16 -#define CHUNK_UBIT_MASK 0x000F0000 +#define CHUNK_UBIT_MASK 0x00040000 #define CHUNK_UBIT_SHIFT 18 -#define CHUNK_BBIT_MASK 0x000F0000 +#define CHUNK_BBIT_MASK 0x00020000 #define CHUNK_BBIT_SHIFT 17 -#define CHUNK_EBIT_MASK 0x000F0000 +#define CHUNK_EBIT_MASK 0x00010000 #define CHUNK_EBIT_SHIFT 16 #define CHUNK_LENGTH_MASK 0x0000FFFF |