diff options
author | Marco Varlese <marco.varlese@suse.com> | 2018-03-01 14:01:46 +0100 |
---|---|---|
committer | Florin Coras <florin.coras@gmail.com> | 2018-03-01 17:43:00 +0000 |
commit | 465c087c58e356426588e5387fff133715a8762d (patch) | |
tree | e078041e663a8ff60847c2ab81cb5700d2f58578 /src/vnet/sctp/sctp.api | |
parent | 6ee4051139409eb53cd41b2b73dac838e8c4e8a0 (diff) |
SCTP: API to delete a sub-connection
This patch adds an API to delete a sub-connection following a SRC/DST IP
mapping as required by the RFC4960.
Change-Id: I7673dd07352557442ffeed6c6c00da274b24953d
Signed-off-by: Marco Varlese <marco.varlese@suse.com>
Diffstat (limited to 'src/vnet/sctp/sctp.api')
-rw-r--r-- | src/vnet/sctp/sctp.api | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/vnet/sctp/sctp.api b/src/vnet/sctp/sctp.api index f2c48d664f8..6253c954d1c 100644 --- a/src/vnet/sctp/sctp.api +++ b/src/vnet/sctp/sctp.api @@ -34,3 +34,11 @@ autoreply define sctp_add_src_dst_connection { u8 dst_address[16]; }; +autoreply define sctp_del_src_dst_connection { + u32 client_index; + u32 context; + u8 is_ipv6; + u32 vrf_id; + u8 src_address[16]; + u8 dst_address[16]; + };
\ No newline at end of file |