dccp.h (404c3bc30cb1361e1b3533643326ab472d24a618) | dccp.h (2c53040f018b6c36a46eec75b9b937aaa5f78e6d) |
---|---|
1#ifndef _DCCP_H 2#define _DCCP_H 3/* 4 * net/dccp/dccp.h 5 * 6 * An implementation of the DCCP protocol 7 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br> 8 * Copyright (c) 2005-6 Ian McDonald <ian.mcdonald@jandi.co.nz> --- 338 unchanged lines hidden (view full) --- 347 * dccp_skb_cb - DCCP per-packet control information 348 * @dccpd_type: one of %dccp_pkt_type (or unknown) 349 * @dccpd_ccval: CCVal field (5.1), see e.g. RFC 4342, 8.1 350 * @dccpd_reset_code: one of %dccp_reset_codes 351 * @dccpd_reset_data: Data1..3 fields (depend on @dccpd_reset_code) 352 * @dccpd_opt_len: total length of all options (5.8) in the packet 353 * @dccpd_seq: sequence number 354 * @dccpd_ack_seq: acknowledgment number subheader field value | 1#ifndef _DCCP_H 2#define _DCCP_H 3/* 4 * net/dccp/dccp.h 5 * 6 * An implementation of the DCCP protocol 7 * Copyright (c) 2005 Arnaldo Carvalho de Melo <acme@conectiva.com.br> 8 * Copyright (c) 2005-6 Ian McDonald <ian.mcdonald@jandi.co.nz> --- 338 unchanged lines hidden (view full) --- 347 * dccp_skb_cb - DCCP per-packet control information 348 * @dccpd_type: one of %dccp_pkt_type (or unknown) 349 * @dccpd_ccval: CCVal field (5.1), see e.g. RFC 4342, 8.1 350 * @dccpd_reset_code: one of %dccp_reset_codes 351 * @dccpd_reset_data: Data1..3 fields (depend on @dccpd_reset_code) 352 * @dccpd_opt_len: total length of all options (5.8) in the packet 353 * @dccpd_seq: sequence number 354 * @dccpd_ack_seq: acknowledgment number subheader field value |
355 * |
|
355 * This is used for transmission as well as for reception. 356 */ 357struct dccp_skb_cb { 358 union { 359 struct inet_skb_parm h4; 360#if IS_ENABLED(CONFIG_IPV6) 361 struct inet6_skb_parm h6; 362#endif --- 145 unchanged lines hidden --- | 356 * This is used for transmission as well as for reception. 357 */ 358struct dccp_skb_cb { 359 union { 360 struct inet_skb_parm h4; 361#if IS_ENABLED(CONFIG_IPV6) 362 struct inet6_skb_parm h6; 363#endif --- 145 unchanged lines hidden --- |