|
|
| Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. |
| version 1.41, 1999/01/20 09:15:41 | version 1.42, 1999/01/20 20:24:12 | ||
|---|---|---|---|
|
|
||
| if (so->so_options & SO_ACCEPTCONN) { | if (so->so_options & SO_ACCEPTCONN) { | ||
| while ((so2 = so->so_q0.tqh_first) != 0) { | while ((so2 = so->so_q0.tqh_first) != 0) { | ||
| so2->so_head = 0; | (void) soqremque(so2, 0); | ||
| (void) soabort(so2); | (void) soabort(so2); | ||
| } | } | ||
| while ((so2 = so->so_q.tqh_first) != 0) { | while ((so2 = so->so_q.tqh_first) != 0) { | ||
| so2->so_head = 0; | (void) soqremque(so2, 1); | ||
| (void) soabort(so2); | (void) soabort(so2); | ||
| } | } | ||
| } | } |