Lines Matching defs:dn_scp
9 struct dn_scp /* Session Control Port */ struct
11 unsigned char state;
29 __le16 addrloc;
30 __le16 addrrem;
31 __u16 numdat;
32 __u16 numoth;
33 __u16 numoth_rcv;
34 __u16 numdat_rcv;
35 __u16 ackxmt_dat;
36 __u16 ackxmt_oth;
37 __u16 ackrcv_dat;
38 __u16 ackrcv_oth;
39 __u8 flowrem_sw;
40 __u8 flowloc_sw;
44 __u16 flowrem_dat;
45 __u16 flowrem_oth;
46 __u16 flowloc_dat;
47 __u16 flowloc_oth;
48 __u8 services_rem;
49 __u8 services_loc;
50 __u8 info_rem;
51 __u8 info_loc;
53 __u16 segsize_rem;
54 __u16 segsize_loc;
56 __u8 nonagle;
57 __u8 multi_ireq;
58 __u8 accept_mode;
59 unsigned long seg_total; /* Running total of current segment */
61 struct optdata_dn conndata_in;
62 struct optdata_dn conndata_out;
63 struct optdata_dn discdata_in;
64 struct optdata_dn discdata_out;
65 struct accessdata_dn accessdata;
67 struct sockaddr_dn addr; /* Local address */
68 struct sockaddr_dn peer; /* Remote address */
94 unsigned long max_window;
95 unsigned long snd_window;
97 unsigned long nsp_srtt;
99 unsigned long nsp_rttvar;
101 unsigned long nsp_rxtshift;
106 struct sk_buff_head data_xmit_queue;
107 struct sk_buff_head other_xmit_queue;
133 static inline struct dn_scp *DN_SK(struct sock *sk) in DN_SK() argument