Changeset 8687ba5 in rtems
- Timestamp:
- 01/28/05 02:14:23 (18 years ago)
- Branches:
- 4.10, 4.11, 4.8, 4.9, 5, master
- Children:
- 0c3a6d6
- Parents:
- 36e92589
- Location:
- cpukit
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
cpukit/ChangeLog
r36e92589 r8687ba5 1 2005-01-28 Ralf Corsepius <ralf.corsepius@rtems.org> 2 3 * libnetworking/net/if_pppvar.h: Ansify. 4 1 5 2005-01-28 Ralf Corsepius <ralf.corsepius@rtems.org> 2 6 -
cpukit/libnetworking/net/if_pppvar.h
r36e92589 r8687ba5 58 58 u_int sc_flags; /* control/status bits; see if_ppp.h */ 59 59 void *sc_devp; /* pointer to device-dep structure */ 60 void (*sc_start) __P((struct ppp_softc *)); /* start output proc */61 void (*sc_ctlp) __P((struct ppp_softc *)); /* rcvd control pkt */62 void (*sc_relinq) __P((struct ppp_softc *)); /* relinquish ifunit */60 void (*sc_start)(struct ppp_softc *); /* start output proc */ 61 void (*sc_ctlp)(struct ppp_softc *); /* rcvd control pkt */ 62 void (*sc_relinq)(struct ppp_softc *); /* relinquish ifunit */ 63 63 short sc_mru; /* max receive unit */ 64 64 pid_t sc_xfer; /* used in transferring unit */ … … 115 115 struct ppp_softc ppp_softc[NPPP]; 116 116 117 struct ppp_softc *pppalloc __P((pid_t pid));118 void pppdealloc __P((struct ppp_softc *sc));119 int pppoutput __P((struct ifnet *, struct mbuf *,120 struct sockaddr *, struct rtentry *) );121 int pppioctl __P((struct ppp_softc *sc, int cmd, caddr_t data,122 int flag, struct proc *p) );123 struct mbuf *ppp_dequeue __P((struct ppp_softc *sc));124 u_short pppfcs __P((u_short fcs, u_char *cp, int len));125 void pppallocmbuf __P((struct ppp_softc *sc, struct mbuf **mp));117 struct ppp_softc *pppalloc(pid_t pid); 118 void pppdealloc(struct ppp_softc *sc); 119 int pppoutput(struct ifnet *, struct mbuf *, 120 struct sockaddr *, struct rtentry *); 121 int pppioctl(struct ppp_softc *sc, int cmd, caddr_t data, 122 int flag, struct proc *p); 123 struct mbuf *ppp_dequeue(struct ppp_softc *sc); 124 u_short pppfcs(u_short fcs, u_char *cp, int len); 125 void pppallocmbuf(struct ppp_softc *sc, struct mbuf **mp); 126 126 127 127
Note: See TracChangeset
for help on using the changeset viewer.