Lines Matching defs:ccid_operations
45 struct ccid_operations { struct
46 unsigned char ccid_id;
47 __u32 ccid_ccmps;
48 const char *ccid_name;
49 struct kmem_cache *ccid_hc_rx_slab,
50 *ccid_hc_tx_slab;
51 char ccid_hc_rx_slab_name[CCID_SLAB_NAME_LENGTH];
52 char ccid_hc_tx_slab_name[CCID_SLAB_NAME_LENGTH];
53 __u32 ccid_hc_rx_obj_size,
54 ccid_hc_tx_obj_size;
56 int (*ccid_hc_rx_init)(struct ccid *ccid, struct sock *sk);
57 int (*ccid_hc_tx_init)(struct ccid *ccid, struct sock *sk);
58 void (*ccid_hc_rx_exit)(struct sock *sk);
59 void (*ccid_hc_tx_exit)(struct sock *sk);
60 void (*ccid_hc_rx_packet_recv)(struct sock *sk,
62 int (*ccid_hc_rx_parse_options)(struct sock *sk, u8 pkt,
64 int (*ccid_hc_rx_insert_options)(struct sock *sk,
88 extern struct ccid_operations ccid2_ops; argument