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