Changeset 8687ba5 in rtems


Ignore:
Timestamp:
01/28/05 02:14:23 (18 years ago)
Author:
Ralf Corsepius <ralf.corsepius@…>
Branches:
4.10, 4.11, 4.8, 4.9, 5, master
Children:
0c3a6d6
Parents:
36e92589
Message:

2005-01-28 Ralf Corsepius <ralf.corsepius@…>

  • libnetworking/net/if_pppvar.h: Ansify.
Location:
cpukit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • cpukit/ChangeLog

    r36e92589 r8687ba5  
     12005-01-28      Ralf Corsepius <ralf.corsepius@rtems.org>
     2
     3        * libnetworking/net/if_pppvar.h: Ansify.
     4
    152005-01-28      Ralf Corsepius <ralf.corsepius@rtems.org>
    26
  • cpukit/libnetworking/net/if_pppvar.h

    r36e92589 r8687ba5  
    5858        u_int   sc_flags;               /* control/status bits; see if_ppp.h */
    5959        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 */
    6363        short   sc_mru;                 /* max receive unit */
    6464        pid_t   sc_xfer;                /* used in transferring unit */
     
    115115struct  ppp_softc ppp_softc[NPPP];
    116116
    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));
     117struct  ppp_softc *pppalloc(pid_t pid);
     118void    pppdealloc(struct ppp_softc *sc);
     119int     pppoutput(struct ifnet *, struct mbuf *,
     120                       struct sockaddr *, struct rtentry *);
     121int     pppioctl(struct ppp_softc *sc, int cmd, caddr_t data,
     122                      int flag, struct proc *p);
     123struct  mbuf *ppp_dequeue(struct ppp_softc *sc);
     124u_short pppfcs(u_short fcs, u_char *cp, int len);
     125void    pppallocmbuf(struct ppp_softc *sc, struct mbuf **mp);
    126126
    127127
Note: See TracChangeset for help on using the changeset viewer.