Lines Matching defs:dn_scp
10 struct dn_scp /* Session Control Port */ struct
12 unsigned char state;
30 __le16 addrloc;
31 __le16 addrrem;
32 __u16 numdat;
33 __u16 numoth;
34 __u16 numoth_rcv;
35 __u16 numdat_rcv;
36 __u16 ackxmt_dat;
37 __u16 ackxmt_oth;
38 __u16 ackrcv_dat;
39 __u16 ackrcv_oth;
40 __u8 flowrem_sw;
41 __u8 flowloc_sw;
45 __u16 flowrem_dat;
46 __u16 flowrem_oth;
47 __u16 flowloc_dat;
48 __u16 flowloc_oth;
49 __u8 services_rem;
50 __u8 services_loc;
51 __u8 info_rem;
52 __u8 info_loc;
54 __u16 segsize_rem;
55 __u16 segsize_loc;
57 __u8 nonagle;
58 __u8 multi_ireq;
59 __u8 accept_mode;
60 unsigned long seg_total; /* Running total of current segment */
62 struct optdata_dn conndata_in;
63 struct optdata_dn conndata_out;
64 struct optdata_dn discdata_in;
65 struct optdata_dn discdata_out;
66 struct accessdata_dn accessdata;
68 struct sockaddr_dn addr; /* Local address */
69 struct sockaddr_dn peer; /* Remote address */
95 unsigned long max_window;
96 unsigned long snd_window;
98 unsigned long nsp_srtt;
100 unsigned long nsp_rttvar;
102 unsigned long nsp_rxtshift;
107 struct sk_buff_head data_xmit_queue;
108 struct sk_buff_head other_xmit_queue;
134 static inline struct dn_scp *DN_SK(struct sock *sk) in DN_SK() argument