ccid.h (cb5629b10d64a8006622ce3a52bc887d91057d69) ccid.h (de4ef86cfce60d2250111f34f8a084e769f23b16)
1#ifndef _CCID_H
2#define _CCID_H
3/*
4 * net/dccp/ccid.h
5 *
6 * An implementation of the DCCP protocol
7 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
8 *

--- 35 unchanged lines hidden (view full) ---

44 * @ccid_hc_{r,t}x_getsockopt: socket options specific to HC-receiver/sender
45 */
46struct ccid_operations {
47 unsigned char ccid_id;
48 __u32 ccid_ccmps;
49 const char *ccid_name;
50 struct kmem_cache *ccid_hc_rx_slab,
51 *ccid_hc_tx_slab;
1#ifndef _CCID_H
2#define _CCID_H
3/*
4 * net/dccp/ccid.h
5 *
6 * An implementation of the DCCP protocol
7 * Arnaldo Carvalho de Melo <acme@conectiva.com.br>
8 *

--- 35 unchanged lines hidden (view full) ---

44 * @ccid_hc_{r,t}x_getsockopt: socket options specific to HC-receiver/sender
45 */
46struct ccid_operations {
47 unsigned char ccid_id;
48 __u32 ccid_ccmps;
49 const char *ccid_name;
50 struct kmem_cache *ccid_hc_rx_slab,
51 *ccid_hc_tx_slab;
52 char ccid_hc_rx_slab_name[32];
53 char ccid_hc_tx_slab_name[32];
52 __u32 ccid_hc_rx_obj_size,
53 ccid_hc_tx_obj_size;
54 /* Interface Routines */
55 int (*ccid_hc_rx_init)(struct ccid *ccid, struct sock *sk);
56 int (*ccid_hc_tx_init)(struct ccid *ccid, struct sock *sk);
57 void (*ccid_hc_rx_exit)(struct sock *sk);
58 void (*ccid_hc_tx_exit)(struct sock *sk);
59 void (*ccid_hc_rx_packet_recv)(struct sock *sk,

--- 174 unchanged lines hidden ---
54 __u32 ccid_hc_rx_obj_size,
55 ccid_hc_tx_obj_size;
56 /* Interface Routines */
57 int (*ccid_hc_rx_init)(struct ccid *ccid, struct sock *sk);
58 int (*ccid_hc_tx_init)(struct ccid *ccid, struct sock *sk);
59 void (*ccid_hc_rx_exit)(struct sock *sk);
60 void (*ccid_hc_tx_exit)(struct sock *sk);
61 void (*ccid_hc_rx_packet_recv)(struct sock *sk,

--- 174 unchanged lines hidden ---