Lines Matching defs:irnet_socket
398 typedef struct irnet_socket struct
402 irda_queue_t q; /* Must be first - for hasbin */
403 int magic; /* Paranoia */
407 struct file * file; /* File descriptor of this instance */
409 struct ktermios termios; /* Various tty flags */
411 int event_index; /* Last read in the event log */
415 int ppp_open; /* registered with ppp_generic */
416 struct ppp_channel chan; /* Interface to generic ppp layer */
418 int mru; /* Max size of PPP payload */
419 u32 xaccm[8]; /* Asynchronous character map (just */
420 u32 raccm; /* to please pppd - dummy) */
421 unsigned int flags; /* PPP flags (compression, ...) */
422 unsigned int rbits; /* Unused receive flags ??? */
423 struct work_struct disconnect_work; /* Process context disconnection */
426 unsigned long ttp_open; /* Set when IrTTP is ready */
427 unsigned long ttp_connect; /* Set when IrTTP is connecting */
428 struct tsap_cb * tsap; /* IrTTP instance (the connection) */
430 char rname[NICKNAME_MAX_LEN + 1];
432 __u32 rdaddr; /* Requested peer IrDA address */
433 __u32 rsaddr; /* Requested local IrDA address */
434 __u32 daddr; /* actual peer IrDA address */
435 __u32 saddr; /* my local IrDA address */
436 __u8 dtsap_sel; /* Remote TSAP selector */
437 __u8 stsap_sel; /* Local TSAP selector */
439 __u32 max_sdu_size_rx;/* Socket parameters used for IrTTP */
463 } irnet_socket; argument