/external/libppp/src/ |
ipv6cp.h | 26 * $FreeBSD: src/usr.sbin/ppp/ipv6cp.h,v 1.2.42.1 2010/12/21 17:10:29 kensmith Exp $ 37 struct ipv6cp { struct 59 #define fsm2ipv6cp(fp) (fp->proto == PROTO_IPV6CP ? (struct ipv6cp *)fp : NULL) 60 #define IPV6CP_QUEUES(ipv6cp) (sizeof ipv6cp->Queue / sizeof ipv6cp->Queue[0]) 67 extern void ipv6cp_Init(struct ipv6cp *, struct bundle *, struct link *, 69 extern void ipv6cp_Destroy(struct ipv6cp *); 70 extern void ipv6cp_Setup(struct ipv6cp *); 71 extern void ipv6cp_SetLink(struct ipv6cp *, struct link *) [all...] |
ipv6cp.c | 26 * $FreeBSD: src/usr.sbin/ppp/ipv6cp.c,v 1.17.10.1.2.1 2010/12/21 17:10:29 kensmith Exp $ 61 #include "ipv6cp.h" 197 ipcp_SetIPv6address(struct ipv6cp *ipv6cp, u_char *myifid, u_char *hisifid) 199 struct bundle *bundle = ipv6cp->fsm.bundle; 227 ncpaddr_setip6(&ipv6cp->myaddr, &myaddr); 228 ncpaddr_setip6(&ipv6cp->hisaddr, &hisaddr); 229 ncprange_set(&myrange, &ipv6cp->myaddr, 64); 231 if (!iface_Add(bundle->iface, &bundle->ncp, &myrange, &ipv6cp->hisaddr, 241 rt_Set(bundle, RTM_ADD, &range, &ipv6cp->myaddr, 1, 0) 326 struct ipv6cp *ipv6cp = &arg->bundle->ncp.ipv6cp; local 467 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); local 523 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); local 575 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); local 588 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); local 599 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); local 620 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); local 686 struct ipv6cp *ipv6cp = fsm2ipv6cp(fp); local [all...] |
ncp.c | 69 #include "ipv6cp.h" 121 ipv6cp_Init(&ncp->ipv6cp, bundle, &bundle->links->physical->link, 131 ipv6cp_Destroy(&ncp->ipv6cp); 167 fsm_Up(&ncp->ipv6cp.fsm); 168 fsm_Open(&ncp->ipv6cp.fsm); 185 ipv6cp_IfaceAddrAdded(&ncp->ipv6cp, addr); 203 ipv6cp_SetLink(&ncp->ipv6cp, l); 215 struct ipv6cp *ipv6cp = &ncp->ipv6cp; local 287 struct ipv6cp *ipv6cp = &ncp->ipv6cp; local [all...] |
ncp.h | 52 struct ipv6cp ipv6cp; /* Our IPV6CP FSM */ member in struct:ncp
|
Makefile | 9 iface.c ip.c ipcp.c ipv6cp.c iplist.c lcp.c link.c log.c lqr.c main.c \
|
command.c | 93 #include "ipv6cp.h" 540 oin += bundle->ncp.ipv6cp.throughput.OctetsIn; 541 oout += bundle->ncp.ipv6cp.throughput.OctetsOut; 542 pin += bundle->ncp.ipv6cp.throughput.PacketsIn; 543 pout += bundle->ncp.ipv6cp.throughput.PacketsOut; 557 nargv[arg] = substipv6(nargv[arg], "HISADDR6", &bundle->ncp.ipv6cp.hisaddr); 570 bundle->ncp.ipv6cp.throughput.OctetsIn); 572 bundle->ncp.ipv6cp.throughput.OctetsOut); 574 bundle->ncp.ipv6cp.throughput.PacketsIn); 576 bundle->ncp.ipv6cp.throughput.PacketsOut) [all...] |
prompt.c | 72 #include "ipv6cp.h" 108 p->bundle->ncp.ipv6cp.fsm.state == ST_OPENED)
|
ip.c | 76 #include "ipv6cp.h" 980 if (bundle->ncp.ipv6cp.fsm.state != ST_OPENED) { 981 log_Printf(LogWARN, "ipv6_Input: IPV6CP not open - packet dropped\n"); 989 ipv6cp_AddInOctets(&bundle->ncp.ipv6cp, nb);
|
ncpaddr.c | 65 #include "ipv6cp.h" 923 range->ncprange_ip6addr = ncp->ipv6cp.hisaddr.ncpaddr_ip6addr; 936 range->ncprange_ip6addr = ncp->ipv6cp.myaddr.ncpaddr_ip6addr;
|
fsm.c | 64 #include "ipv6cp.h" 927 log_Printf(LogPHASE, "%s: IPV6CP protocol reject closes IPV6CP !\n", 929 fsm_Close(&fp->bundle->ncp.ipv6cp.fsm);
|
radius.c | 79 #include "ipv6cp.h" 511 ncpaddr_copy(&gw, &bundle->ncp.ipv6cp.hisaddr); 1083 /* Fetch interface-id from IPV6CP */ [all...] |
/external/ppp/pppd/ |
Makefile.linux | 181 PPPDSRCS += ipv6cp.c eui64.c 182 HEADERS += ipv6cp.h eui64.h 183 PPPDOBJS += ipv6cp.o eui64.o
|