| version 1.62, 2002/08/14 00:23:33 |
version 1.63, 2002/10/22 02:34:47 |
|
|
| in_pcbinit(&rawcbtable, 1, 1); |
in_pcbinit(&rawcbtable, 1, 1); |
| } |
} |
| |
|
| static struct sockaddr_in ripsrc = { sizeof(ripsrc), AF_INET }; |
|
| |
|
| /* |
/* |
| * Setup generic address and protocol structures |
* Setup generic address and protocol structures |
| * for raw_input routine, then pass them along with |
* for raw_input routine, then pass them along with |
| Line 142 rip_input(m, va_alist) |
|
| Line 140 rip_input(m, va_alist) |
|
| va_dcl |
va_dcl |
| #endif |
#endif |
| { |
{ |
| int off, proto; |
int proto; |
| struct ip *ip = mtod(m, struct ip *); |
struct ip *ip = mtod(m, struct ip *); |
| struct inpcb *inp; |
struct inpcb *inp; |
| struct inpcb *last = 0; |
struct inpcb *last = 0; |
| Line 151 rip_input(m, va_alist) |
|
| Line 149 rip_input(m, va_alist) |
|
| va_list ap; |
va_list ap; |
| |
|
| va_start(ap, m); |
va_start(ap, m); |
| off = va_arg(ap, int); |
|
| proto = va_arg(ap, int); |
proto = va_arg(ap, int); |
| va_end(ap); |
va_end(ap); |
| |
|