|
Lines 1-6
Link Here
|
| 1 |
/*- |
1 |
/*- |
| 2 |
* Copyright (c) 1982, 1986, 1990, 1993 |
2 |
* Copyright (c) 1982, 1986, 1990, 1993 |
| 3 |
* The Regents of the University of California. All rights reserved. |
3 |
* The Regents of the University of California. All rights reserved. |
|
|
4 |
* Copyright (c) 2015, by 2ch.net. All rights reserved. |
| 4 |
* |
5 |
* |
| 5 |
* Redistribution and use in source and binary forms, with or without |
6 |
* Redistribution and use in source and binary forms, with or without |
| 6 |
* modification, are permitted provided that the following conditions |
7 |
* modification, are permitted provided that the following conditions |
|
Lines 95-104
Link Here
|
| 95 |
TAILQ_HEAD(, socket) so_incomp; /* (e) queue of partial unaccepted connections */ |
96 |
TAILQ_HEAD(, socket) so_incomp; /* (e) queue of partial unaccepted connections */ |
| 96 |
TAILQ_HEAD(, socket) so_comp; /* (e) queue of complete unaccepted connections */ |
97 |
TAILQ_HEAD(, socket) so_comp; /* (e) queue of complete unaccepted connections */ |
| 97 |
TAILQ_ENTRY(socket) so_list; /* (e) list of unaccepted connections */ |
98 |
TAILQ_ENTRY(socket) so_list; /* (e) list of unaccepted connections */ |
| 98 |
u_short so_qlen; /* (e) number of unaccepted connections */ |
99 |
u_int so_qlen; /* (e) number of unaccepted connections */ |
| 99 |
u_short so_incqlen; /* (e) number of unaccepted incomplete |
100 |
u_int so_incqlen; /* (e) number of unaccepted incomplete |
| 100 |
connections */ |
101 |
connections */ |
| 101 |
u_short so_qlimit; /* (e) max number queued connections */ |
102 |
u_int so_qlimit; /* (e) max number queued connections */ |
| 102 |
short so_timeo; /* (g) connection timeout */ |
103 |
short so_timeo; /* (g) connection timeout */ |
| 103 |
u_short so_error; /* (f) error affecting connection */ |
104 |
u_short so_error; /* (f) error affecting connection */ |
| 104 |
struct sigio *so_sigio; /* [sg] information for async I/O or |
105 |
struct sigio *so_sigio; /* [sg] information for async I/O or |
|
Lines 172-180
Link Here
|
| 172 |
caddr_t so_pcb; /* another convenient handle */ |
173 |
caddr_t so_pcb; /* another convenient handle */ |
| 173 |
int xso_protocol; |
174 |
int xso_protocol; |
| 174 |
int xso_family; |
175 |
int xso_family; |
| 175 |
u_short so_qlen; |
176 |
u_int so_qlen; |
| 176 |
u_short so_incqlen; |
177 |
u_int so_incqlen; |
| 177 |
u_short so_qlimit; |
178 |
u_int so_qlimit; |
| 178 |
short so_timeo; |
179 |
short so_timeo; |
| 179 |
u_short so_error; |
180 |
u_short so_error; |
| 180 |
pid_t so_pgid; |
181 |
pid_t so_pgid; |