Lines Matching defs:ircomm_tty_cb
63 struct ircomm_tty_cb { struct
64 irda_queue_t queue; /* Must be first */
65 magic_t magic;
67 int state; /* Connect state */
69 struct tty_struct *tty;
70 struct ircomm_cb *ircomm; /* IrCOMM layer instance */
72 struct sk_buff *tx_skb; /* Transmit buffer */
73 struct sk_buff *ctrl_skb; /* Control data buffer */
76 struct ircomm_params settings;
78 __u8 service_type; /* The service that we support */
79 int client; /* True if we are a client */
80 LOCAL_FLOW flow; /* IrTTP flow status */
82 int line;
83 unsigned long flags;
85 __u8 dlsap_sel;
86 __u8 slsap_sel;
88 __u32 saddr;
89 __u32 daddr;
91 __u32 max_data_size; /* Max data we can transmit in one packet */
92 __u32 max_header_size; /* The amount of header space we must reserve */
93 __u32 tx_data_size; /* Max data size of current tx_skb */
95 struct iriap_cb *iriap; /* Instance used for querying remote IAS */
96 struct ias_object* obj;
97 void *skey;
121 void ircomm_tty_check_modem_status(struct ircomm_tty_cb *self); argument