| /trueos/sys/net/ |
| HD | if_spppsubr.c | 219 void (*Up)(struct sppp *sp); 220 void (*Down)(struct sppp *sp); 221 void (*Open)(struct sppp *sp); 222 void (*Close)(struct sppp *sp); 224 int (*RCR)(struct sppp *sp, struct lcp_header *h, int len); 225 void (*RCN_rej)(struct sppp *sp, struct lcp_header *h, int len); 226 void (*RCN_nak)(struct sppp *sp, struct lcp_header *h, int len); 228 void (*tlu)(struct sppp *sp); 229 void (*tld)(struct sppp *sp); 230 void (*tls)(struct sppp *sp); [all …]
|
| HD | if_sppp.h | 138 struct sppp { struct 142 struct sppp *pp_next; /* next interface in keepalive list */ argument 178 void (*pp_up)(struct sppp *sp); argument 179 void (*pp_down)(struct sppp *sp); argument 186 void (*pp_tls)(struct sppp *sp); argument 187 void (*pp_tlf)(struct sppp *sp); argument 195 void (*pp_con)(struct sppp *sp); argument 196 void (*pp_chg)(struct sppp *sp, int new_state); argument 206 #define IFP2SP(ifp) ((struct sppp *)(ifp)->if_l2com) argument 226 void sppp_fr_input (struct sppp *sp, struct mbuf *m); [all …]
|
| HD | if_spppfr.c | 165 static void sppp_fr_arp (struct sppp *sp, struct arp_req *req, u_short addr); 166 static void sppp_fr_signal (struct sppp *sp, unsigned char *h, int len); 168 void sppp_fr_input (struct sppp *sp, struct mbuf *m) in sppp_fr_input() 298 struct mbuf *sppp_fr_header (struct sppp *sp, struct mbuf *m, in sppp_fr_header() 378 void sppp_fr_keepalive (struct sppp *sp) in sppp_fr_keepalive() 428 static void sppp_fr_arp (struct sppp *sp, struct arp_req *req, in sppp_fr_arp() 543 static void sppp_fr_signal (struct sppp *sp, unsigned char *h, int len) in sppp_fr_signal()
|
| /trueos/sys/netgraph/ |
| HD | ng_sppp.c | 97 NETGRAPH_INIT(sppp, &typestruct); 99 MODULE_DEPEND (ng_sppp, sppp, 1, 1, 1); 242 struct sppp *pp; in ng_sppp_constructor() 316 struct sppp *const pp = IFP2SP(priv->ifp); in ng_sppp_rcvmsg() 354 struct sppp *const pp = IFP2SP(priv->ifp); in ng_sppp_rcvdata()
|
| /trueos/sys/modules/sppp/ |
| HD | Makefile | 5 KMOD= sppp
|
| /trueos/sys/modules/netgraph/ |
| HD | Makefile | 48 sppp \
|
| /trueos/sys/dev/lmc/ |
| HD | if_lmc.c | 4080 sppp_tls(struct sppp *sppp) in sppp_tls() argument 4083 if (!(sppp->pp_mode & IFF_LINK2) && in sppp_tls() 4084 !(sppp->pp_flags & PP_FR)) in sppp_tls() 4086 if (!(sppp->pp_flags & PP_CISCO)) in sppp_tls() 4088 sppp->pp_up(sppp); in sppp_tls() 4093 sppp_tlf(struct sppp *sppp) in sppp_tlf() argument 4096 if (!(sppp->pp_mode & IFF_LINK2) && in sppp_tlf() 4097 !(sppp->pp_flags & PP_FR)) in sppp_tlf() 4099 if (!(sppp->pp_flags & PP_CISCO)) in sppp_tlf() 4101 sppp->pp_down(sppp); in sppp_tlf() [all …]
|
| HD | if_lmc.h | 1122 struct sppp spppcom; /* must be first in sc for fbsd < 6 */ 1124 struct sppp *sppp; member 1585 static void sppp_tls(struct sppp *); 1586 static void sppp_tlf(struct sppp *);
|
| /trueos/etc/ |
| HD | netstart | 49 /etc/rc.d/sppp ${_start}
|
| /trueos/sys/modules/ |
| HD | Makefile | 564 _sppp= sppp 782 _sppp= sppp 841 _sppp= sppp
|
| /trueos/etc/rc.d/ |
| HD | Makefile | 113 sppp \
|
| /trueos/sys/dev/ce/ |
| HD | if_ce.c | 86 #define IFP2SP(ifp) ((struct sppp*)ifp) 219 static void ce_tlf (struct sppp *sp); 220 static void ce_tls (struct sppp *sp); 716 d->ifp = malloc (sizeof(struct sppp), M_DEVBUF, M_WAITOK); in ce_attach() 717 bzero (d->ifp, sizeof(struct sppp)); in ce_attach() 888 static void ce_tlf (struct sppp *sp) in ce_tlf() 896 static void ce_tls (struct sppp *sp) in ce_tls() 2656 MODULE_DEPEND (ce, sppp, 1, 1, 1);
|
| /trueos/sys/dev/ctau/ |
| HD | if_ct.c | 164 static void ct_tlf (struct sppp *sp); 165 static void ct_tls (struct sppp *sp); 879 static void ct_tlf (struct sppp *sp) in ct_tlf() 890 static void ct_tls (struct sppp *sp) in ct_tls() 2221 MODULE_DEPEND (ct, sppp, 1, 1, 1);
|
| /trueos/sys/dev/cp/ |
| HD | if_cp.c | 159 static void cp_tlf (struct sppp *sp); 160 static void cp_tls (struct sppp *sp); 670 static void cp_tlf (struct sppp *sp) in cp_tlf() 682 static void cp_tls (struct sppp *sp) in cp_tls() 2284 MODULE_DEPEND (cp, sppp, 1, 1, 1);
|
| /trueos/sys/dev/cx/ |
| HD | if_cx.c | 208 static void cx_tlf (struct sppp *sp); 209 static void cx_tls (struct sppp *sp); 1031 static void cx_tlf (struct sppp *sp) in cx_tlf() 1042 static void cx_tls (struct sppp *sp) in cx_tls() 2559 MODULE_DEPEND (isa_cx, sppp, 1, 1, 1);
|
| /trueos/sys/pc98/conf/ |
| HD | NOTES | 372 # with 32 HDLC subchannels (requires sppp (default), or NETGRAPH if 376 # serial adaptor (requires sppp (default), or NETGRAPH if
|
| /trueos/share/man/man4/ |
| HD | Makefile | 478 sppp.4 \
|
| /trueos/sys/i386/conf/ |
| HD | NOTES | 560 # with 32 HDLC subchannels (requires sppp (default), or NETGRAPH if 564 # serial adaptor (requires sppp (default), or NETGRAPH if 568 # serial adaptor (requires sppp (default), or NETGRAPH if
|
| /trueos/sys/mips/rmi/ |
| HD | rootfs_list.txt | 287 ./etc/rc.d/sppp
|
| /trueos/sys/conf/ |
| HD | NOTES | 833 # The `sppp' device serves a similar role for certain types 835 device sppp
|
| HD | files | 3292 net/if_spppfr.c optional sppp | netgraph_sppp 3293 net/if_spppsubr.c optional sppp | netgraph_sppp 3308 net/slcompress.c optional netgraph_vjc | sppp | \
|