Rename raw_append() to rip_append(): the raw_ prefix is generally used

for functions in the generic raw socket library (raw_cb.c, raw_usrreq.c),
and they are not used for IPv4 raw sockets.

MFC after:	3 days
This commit is contained in:
Robert Watson 2008-07-05 18:55:03 +00:00
parent 0ae76120da
commit cec9ffee22

View File

@ -156,7 +156,7 @@ rip_init(void)
static struct sockaddr_in ripsrc = { sizeof(ripsrc), AF_INET };
static int
raw_append(struct inpcb *last, struct ip *ip, struct mbuf *n)
rip_append(struct inpcb *last, struct ip *ip, struct mbuf *n)
{
int policyfail = 0;
@ -238,14 +238,14 @@ rip_input(struct mbuf *m, int off)
n = m_copy(m, 0, (int)M_COPYALL);
if (n != NULL)
(void) raw_append(last, ip, n);
(void) rip_append(last, ip, n);
/* XXX count dropped packet */
INP_RUNLOCK(last);
}
last = inp;
}
if (last != NULL) {
if (raw_append(last, ip, m) != 0)
if (rip_append(last, ip, m) != 0)
ipstat.ips_delivered--;
INP_RUNLOCK(last);
} else {