date and time created 81/11/29 22:57:48 by sam
[unix-history] / usr / src / sys / netinet / raw_ip.c
CommitLineData
2a598b25
BJ
1/* raw_ip.c 4.1 81/11/29 */
2
3#include "../h/param.h"
4#include "../h/mbuf.h"
5#include "../h/socket.h"
6#include "../h/socketvar.h"
7#include "../net/in.h"
8#include "../net/in_systm.h"
9
10/*
11 * Raw protocol interface.
12 */
13/*ARGSUSED*/
14rip_input(m)
15 struct mbuf *m;
16{
17
18COUNT(RIP_INPUT);
19
20 /* call raw_input with prepared parameters */
21}
22
23/*ARGSUSED*/
24rip_ctlinput(m)
25 struct mbuf *m;
26{
27
28COUNT(RIP_CTLINPUT);
29
30}
31
32/*ARGSUSED*/
33rip_output(m)
34 struct mbuf *m;
35{
36
37COUNT(RIP_OUTPUT);
38
39}
40
41/*ARGSUSED*/
42rip_usrreq(so, req, m, addr)
43 struct socket *so;
44 int req;
45 struct mbuf *m;
46 caddr_t addr;
47{
48
49COUNT(RAW_USRREQ);
50
51}
52
53rip_slowtimo()
54{
55
56COUNT(RIP_SLOWTIMO);
57
58}