Searched defs:protent (Results 1 – 2 of 2) sorted by relevance
274 struct protent { struct275 u_short protocol; /* PPP protocol number */277 void (*init) (int unit);279 void (*input) (int unit, u_char *pkt, int len);281 void (*protrej) (int unit);283 void (*lowerup) (int unit);285 void (*lowerdown) (int unit);287 void (*open) (int unit);289 void (*close) (int unit, char *reason);292 int (*printpkt) (u_char *pkt, int len,[all …]
397 struct protent { struct398 u_short protocol; /* PPP protocol number */400 void (*init) __P((int unit));402 void (*input) __P((int unit, u_char *pkt, int len));404 void (*protrej) __P((int unit));406 void (*lowerup) __P((int unit));431 extern struct protent *protocols[]; argument