sppp              378 dev/pci/if_art.c 	struct sppp		*ppp = &ac->art_channel->cc_ppp;
sppp              285 dev/pci/if_lmcvar.h     struct sppp lmc_sppp;
sppp              342 dev/pci/if_san_common.h 	struct sppp	ifp;
sppp              134 dev/pci/if_san_obsd.c 	((struct sppp *)ifp)->pp_flags |= PP_CISCO;
sppp              135 dev/pci/if_san_obsd.c 	((struct sppp *)ifp)->pp_flags |= PP_KEEPALIVE;
sppp              136 dev/pci/if_san_obsd.c 	((struct sppp *)ifp)->pp_framebytes = 3;
sppp              409 dev/pci/if_san_obsd.c 		((struct sppp *)ifp)->pp_flags |= PP_CISCO;
sppp              410 dev/pci/if_san_obsd.c 		((struct sppp *)ifp)->pp_flags |= PP_KEEPALIVE;
sppp              416 dev/pci/if_san_obsd.c 		((struct sppp *)ifp)->pp_flags &= ~PP_CISCO;
sppp              417 dev/pci/if_san_obsd.c 		((struct sppp *)ifp)->pp_flags |= PP_KEEPALIVE;
sppp              142 dev/pci/musyccvar.h 	struct sppp		 cc_ppp;	/* sppp network attachement */
sppp              135 net/if_pppoe.c 	struct sppp sc_sppp;		/* contains a struct ifnet as first element */
sppp              176 net/if_pppoe.c static void pppoe_tls(struct sppp *);
sppp              177 net/if_pppoe.c static void pppoe_tlf(struct sppp *);
sppp             1390 net/if_pppoe.c pppoe_tls(struct sppp *sp)
sppp             1401 net/if_pppoe.c pppoe_tlf(struct sppp *sp)
sppp              105 net/if_sppp.h  struct sppp {
sppp              110 net/if_sppp.h  	struct  sppp *pp_next;  /* next interface in keepalive list */
sppp              138 net/if_sppp.h  	void	(*pp_up)(struct sppp *sp);
sppp              139 net/if_sppp.h  	void	(*pp_down)(struct sppp *sp);
sppp              146 net/if_sppp.h  	void	(*pp_tls)(struct sppp *sp);
sppp              147 net/if_sppp.h  	void	(*pp_tlf)(struct sppp *sp);
sppp              155 net/if_sppp.h  	void	(*pp_con)(struct sppp *sp);
sppp              156 net/if_sppp.h  	void	(*pp_chg)(struct sppp *sp, int new_state);
sppp              183 net/if_sppp.h  #define SPPPIOGDEFS  ((caddr_t)(('S' << 24) + (1 << 16) + sizeof(struct sppp)))
sppp              184 net/if_sppp.h  #define SPPPIOSDEFS  ((caddr_t)(('S' << 24) + (2 << 16) + sizeof(struct sppp)))
sppp              188 net/if_sppp.h  	struct sppp defs;
sppp              232 net/if_spppsubr.c 	void	(*Up)(struct sppp *sp);
sppp              233 net/if_spppsubr.c 	void	(*Down)(struct sppp *sp);
sppp              234 net/if_spppsubr.c 	void	(*Open)(struct sppp *sp);
sppp              235 net/if_spppsubr.c 	void	(*Close)(struct sppp *sp);
sppp              237 net/if_spppsubr.c 	int	(*RCR)(struct sppp *sp, struct lcp_header *h, int len);
sppp              238 net/if_spppsubr.c 	void	(*RCN_rej)(struct sppp *sp, struct lcp_header *h, int len);
sppp              239 net/if_spppsubr.c 	void	(*RCN_nak)(struct sppp *sp, struct lcp_header *h, int len);
sppp              241 net/if_spppsubr.c 	void	(*tlu)(struct sppp *sp);
sppp              242 net/if_spppsubr.c 	void	(*tld)(struct sppp *sp);
sppp              243 net/if_spppsubr.c 	void	(*tls)(struct sppp *sp);
sppp              244 net/if_spppsubr.c 	void	(*tlf)(struct sppp *sp);
sppp              245 net/if_spppsubr.c 	void	(*scr)(struct sppp *sp);
sppp              248 net/if_spppsubr.c static struct sppp *spppq;
sppp              286 net/if_spppsubr.c HIDE void sppp_cisco_send(struct sppp *sp, u_int32_t type, u_int32_t par1, u_int32_t par2);
sppp              287 net/if_spppsubr.c HIDE void sppp_cisco_input(struct sppp *sp, struct mbuf *m);
sppp              289 net/if_spppsubr.c HIDE void sppp_cp_input(const struct cp *cp, struct sppp *sp,
sppp              291 net/if_spppsubr.c HIDE void sppp_cp_send(struct sppp *sp, u_short proto, u_char type,
sppp              296 net/if_spppsubr.c HIDE void sppp_cp_change_state(const struct cp *cp, struct sppp *sp,
sppp              299 net/if_spppsubr.c 			   struct sppp *sp, unsigned int type, u_char id,
sppp              302 net/if_spppsubr.c HIDE void sppp_up_event(const struct cp *cp, struct sppp *sp);
sppp              303 net/if_spppsubr.c HIDE void sppp_down_event(const struct cp *cp, struct sppp *sp);
sppp              304 net/if_spppsubr.c HIDE void sppp_open_event(const struct cp *cp, struct sppp *sp);
sppp              305 net/if_spppsubr.c HIDE void sppp_close_event(const struct cp *cp, struct sppp *sp);
sppp              306 net/if_spppsubr.c HIDE void sppp_increasing_timeout(const struct cp *cp, struct sppp *sp);
sppp              307 net/if_spppsubr.c HIDE void sppp_to_event(const struct cp *cp, struct sppp *sp);
sppp              309 net/if_spppsubr.c HIDE void sppp_null(struct sppp *sp);
sppp              311 net/if_spppsubr.c HIDE void sppp_lcp_init(struct sppp *sp);
sppp              312 net/if_spppsubr.c HIDE void sppp_lcp_up(struct sppp *sp);
sppp              313 net/if_spppsubr.c HIDE void sppp_lcp_down(struct sppp *sp);
sppp              314 net/if_spppsubr.c HIDE void sppp_lcp_open(struct sppp *sp);
sppp              315 net/if_spppsubr.c HIDE void sppp_lcp_close(struct sppp *sp);
sppp              317 net/if_spppsubr.c HIDE int sppp_lcp_RCR(struct sppp *sp, struct lcp_header *h, int len);
sppp              318 net/if_spppsubr.c HIDE void sppp_lcp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len);
sppp              319 net/if_spppsubr.c HIDE void sppp_lcp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len);
sppp              320 net/if_spppsubr.c HIDE void sppp_lcp_tlu(struct sppp *sp);
sppp              321 net/if_spppsubr.c HIDE void sppp_lcp_tld(struct sppp *sp);
sppp              322 net/if_spppsubr.c HIDE void sppp_lcp_tls(struct sppp *sp);
sppp              323 net/if_spppsubr.c HIDE void sppp_lcp_tlf(struct sppp *sp);
sppp              324 net/if_spppsubr.c HIDE void sppp_lcp_scr(struct sppp *sp);
sppp              325 net/if_spppsubr.c HIDE void sppp_lcp_check_and_close(struct sppp *sp);
sppp              326 net/if_spppsubr.c HIDE int sppp_ncp_check(struct sppp *sp);
sppp              328 net/if_spppsubr.c HIDE void sppp_ipcp_init(struct sppp *sp);
sppp              329 net/if_spppsubr.c HIDE void sppp_ipcp_up(struct sppp *sp);
sppp              330 net/if_spppsubr.c HIDE void sppp_ipcp_down(struct sppp *sp);
sppp              331 net/if_spppsubr.c HIDE void sppp_ipcp_open(struct sppp *sp);
sppp              332 net/if_spppsubr.c HIDE void sppp_ipcp_close(struct sppp *sp);
sppp              334 net/if_spppsubr.c HIDE int sppp_ipcp_RCR(struct sppp *sp, struct lcp_header *h, int len);
sppp              335 net/if_spppsubr.c HIDE void sppp_ipcp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len);
sppp              336 net/if_spppsubr.c HIDE void sppp_ipcp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len);
sppp              337 net/if_spppsubr.c HIDE void sppp_ipcp_tlu(struct sppp *sp);
sppp              338 net/if_spppsubr.c HIDE void sppp_ipcp_tld(struct sppp *sp);
sppp              339 net/if_spppsubr.c HIDE void sppp_ipcp_tls(struct sppp *sp);
sppp              340 net/if_spppsubr.c HIDE void sppp_ipcp_tlf(struct sppp *sp);
sppp              341 net/if_spppsubr.c HIDE void sppp_ipcp_scr(struct sppp *sp);
sppp              343 net/if_spppsubr.c HIDE void sppp_pap_input(struct sppp *sp, struct mbuf *m);
sppp              344 net/if_spppsubr.c HIDE void sppp_pap_init(struct sppp *sp);
sppp              345 net/if_spppsubr.c HIDE void sppp_pap_open(struct sppp *sp);
sppp              346 net/if_spppsubr.c HIDE void sppp_pap_close(struct sppp *sp);
sppp              349 net/if_spppsubr.c HIDE void sppp_pap_tlu(struct sppp *sp);
sppp              350 net/if_spppsubr.c HIDE void sppp_pap_tld(struct sppp *sp);
sppp              351 net/if_spppsubr.c HIDE void sppp_pap_scr(struct sppp *sp);
sppp              353 net/if_spppsubr.c HIDE void sppp_chap_input(struct sppp *sp, struct mbuf *m);
sppp              354 net/if_spppsubr.c HIDE void sppp_chap_init(struct sppp *sp);
sppp              355 net/if_spppsubr.c HIDE void sppp_chap_open(struct sppp *sp);
sppp              356 net/if_spppsubr.c HIDE void sppp_chap_close(struct sppp *sp);
sppp              358 net/if_spppsubr.c HIDE void sppp_chap_tlu(struct sppp *sp);
sppp              359 net/if_spppsubr.c HIDE void sppp_chap_tld(struct sppp *sp);
sppp              360 net/if_spppsubr.c HIDE void sppp_chap_scr(struct sppp *sp);
sppp              370 net/if_spppsubr.c HIDE int sppp_params(struct sppp *sp, u_long cmd, void *data);
sppp              372 net/if_spppsubr.c HIDE void sppp_get_ip_addrs(struct sppp *sp, u_int32_t *src, u_int32_t *dst,
sppp              375 net/if_spppsubr.c HIDE void sppp_phase_network(struct sppp *sp);
sppp              379 net/if_spppsubr.c HIDE void sppp_set_ip_addrs(struct sppp *sp, u_int32_t myaddr,
sppp              381 net/if_spppsubr.c HIDE void sppp_clear_ip_addrs(struct sppp *sp);
sppp              382 net/if_spppsubr.c HIDE void sppp_set_phase(struct sppp *sp);
sppp              445 net/if_spppsubr.c 	struct sppp *sp = (struct sppp *)ifp;
sppp              569 net/if_spppsubr.c 			sppp_cisco_input ((struct sppp*) ifp, m);
sppp              618 net/if_spppsubr.c 	struct sppp *sp = (struct sppp*) ifp;
sppp              809 net/if_spppsubr.c 	struct sppp *sp = (struct sppp*) ifp;
sppp              849 net/if_spppsubr.c 	struct sppp **q, *p, *sp = (struct sppp*) ifp;
sppp              874 net/if_spppsubr.c 	struct sppp *sp = (struct sppp*) ifp;
sppp              887 net/if_spppsubr.c 	struct sppp *sp = (struct sppp*) ifp;
sppp              903 net/if_spppsubr.c 	struct sppp *sp = (struct sppp*) ifp;
sppp              931 net/if_spppsubr.c 	struct sppp *sp = (struct sppp*)ifp;
sppp              953 net/if_spppsubr.c 	struct sppp *sp = (struct sppp*) ifp;
sppp             1047 net/if_spppsubr.c sppp_cisco_input(struct sppp *sp, struct mbuf *m)
sppp             1122 net/if_spppsubr.c sppp_cisco_send(struct sppp *sp, u_int32_t type, u_int32_t par1, u_int32_t par2)
sppp             1179 net/if_spppsubr.c sppp_cp_send(struct sppp *sp, u_short proto, u_char type,
sppp             1242 net/if_spppsubr.c sppp_cp_input(const struct cp *cp, struct sppp *sp, struct mbuf *m)
sppp             1602 net/if_spppsubr.c sppp_up_event(const struct cp *cp, struct sppp *sp)
sppp             1629 net/if_spppsubr.c sppp_down_event(const struct cp *cp, struct sppp *sp)
sppp             1667 net/if_spppsubr.c sppp_open_event(const struct cp *cp, struct sppp *sp)
sppp             1703 net/if_spppsubr.c sppp_close_event(const struct cp *cp, struct sppp *sp)
sppp             1744 net/if_spppsubr.c sppp_increasing_timeout (const struct cp *cp, struct sppp *sp)
sppp             1761 net/if_spppsubr.c sppp_to_event(const struct cp *cp, struct sppp *sp)
sppp             1820 net/if_spppsubr.c sppp_cp_change_state(const struct cp *cp, struct sppp *sp, int newstate)
sppp             1857 net/if_spppsubr.c sppp_lcp_init(struct sppp *sp)
sppp             1883 net/if_spppsubr.c sppp_lcp_up(struct sppp *sp)
sppp             1932 net/if_spppsubr.c sppp_lcp_down(struct sppp *sp)
sppp             1972 net/if_spppsubr.c sppp_lcp_open(struct sppp *sp)
sppp             1986 net/if_spppsubr.c sppp_lcp_close(struct sppp *sp)
sppp             1994 net/if_spppsubr.c 	sppp_to_event(&lcp, (struct sppp *)cookie);
sppp             2004 net/if_spppsubr.c sppp_lcp_RCR(struct sppp *sp, struct lcp_header *h, int len)
sppp             2212 net/if_spppsubr.c sppp_lcp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len)
sppp             2272 net/if_spppsubr.c sppp_lcp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len)
sppp             2345 net/if_spppsubr.c sppp_lcp_tlu(struct sppp *sp)
sppp             2405 net/if_spppsubr.c sppp_lcp_tld(struct sppp *sp)
sppp             2428 net/if_spppsubr.c sppp_lcp_tls(struct sppp *sp)
sppp             2440 net/if_spppsubr.c sppp_lcp_tlf(struct sppp *sp)
sppp             2451 net/if_spppsubr.c sppp_lcp_scr(struct sppp *sp)
sppp             2497 net/if_spppsubr.c sppp_ncp_check(struct sppp *sp)
sppp             2512 net/if_spppsubr.c sppp_lcp_check_and_close(struct sppp *sp)
sppp             2533 net/if_spppsubr.c sppp_ipcp_init(struct sppp *sp)
sppp             2545 net/if_spppsubr.c sppp_ipcp_up(struct sppp *sp)
sppp             2551 net/if_spppsubr.c sppp_ipcp_down(struct sppp *sp)
sppp             2557 net/if_spppsubr.c sppp_ipcp_open(struct sppp *sp)
sppp             2563 net/if_spppsubr.c sppp_ipcp_close(struct sppp *sp)
sppp             2571 net/if_spppsubr.c 	sppp_to_event(&ipcp, (struct sppp *)cookie);
sppp             2581 net/if_spppsubr.c sppp_ipcp_RCR(struct sppp *sp, struct lcp_header *h, int len)
sppp             2758 net/if_spppsubr.c sppp_ipcp_RCN_rej(struct sppp *sp, struct lcp_header *h, int len)
sppp             2800 net/if_spppsubr.c sppp_ipcp_RCN_nak(struct sppp *sp, struct lcp_header *h, int len)
sppp             2861 net/if_spppsubr.c sppp_ipcp_tlu(struct sppp *sp)
sppp             2876 net/if_spppsubr.c sppp_ipcp_tld(struct sppp *sp)
sppp             2881 net/if_spppsubr.c sppp_ipcp_tls(struct sppp *sp)
sppp             2927 net/if_spppsubr.c sppp_ipcp_tlf(struct sppp *sp)
sppp             2939 net/if_spppsubr.c sppp_ipcp_scr(struct sppp *sp)
sppp             3064 net/if_spppsubr.c sppp_chap_input(struct sppp *sp, struct mbuf *m)
sppp             3288 net/if_spppsubr.c sppp_chap_init(struct sppp *sp)
sppp             3299 net/if_spppsubr.c sppp_chap_open(struct sppp *sp)
sppp             3312 net/if_spppsubr.c sppp_chap_close(struct sppp *sp)
sppp             3321 net/if_spppsubr.c 	struct sppp *sp = (struct sppp *)cookie;
sppp             3358 net/if_spppsubr.c sppp_chap_tlu(struct sppp *sp)
sppp             3422 net/if_spppsubr.c sppp_chap_tld(struct sppp *sp)
sppp             3435 net/if_spppsubr.c sppp_chap_scr(struct sppp *sp)
sppp             3474 net/if_spppsubr.c sppp_pap_input(struct sppp *sp, struct mbuf *m)
sppp             3617 net/if_spppsubr.c sppp_pap_init(struct sppp *sp)
sppp             3629 net/if_spppsubr.c sppp_pap_open(struct sppp *sp)
sppp             3651 net/if_spppsubr.c sppp_pap_close(struct sppp *sp)
sppp             3664 net/if_spppsubr.c 	struct sppp *sp = (struct sppp *)cookie;
sppp             3703 net/if_spppsubr.c 	struct sppp *sp = (struct sppp *)cookie;
sppp             3714 net/if_spppsubr.c sppp_pap_tlu(struct sppp *sp)
sppp             3743 net/if_spppsubr.c sppp_pap_tld(struct sppp *sp)
sppp             3757 net/if_spppsubr.c sppp_pap_scr(struct sppp *sp)
sppp             3785 net/if_spppsubr.c sppp_auth_send(const struct cp *cp, struct sppp *sp,
sppp             3888 net/if_spppsubr.c 	struct sppp *sp;
sppp             3960 net/if_spppsubr.c sppp_get_ip_addrs(struct sppp *sp, u_int32_t *src, u_int32_t *dst,
sppp             4010 net/if_spppsubr.c sppp_set_ip_addrs(struct sppp *sp, u_int32_t myaddr, u_int32_t hisaddr)
sppp             4074 net/if_spppsubr.c sppp_clear_ip_addrs(struct sppp *sp)
sppp             4117 net/if_spppsubr.c sppp_params(struct sppp *sp, u_long cmd, void *data)
sppp             4136 net/if_spppsubr.c 		bcopy(sp, &spr.defs, sizeof(struct sppp));
sppp             4212 net/if_spppsubr.c sppp_phase_network(struct sppp *sp)
sppp             4404 net/if_spppsubr.c sppp_null(struct sppp *unused)
sppp             4417 net/if_spppsubr.c sppp_set_phase(struct sppp *sp)