Searched refs:ppp (Results 1 - 25 of 27) sorted by relevance

12

/linux-master/include/uapi/linux/
H A Dif_ppp.h1 #include <linux/ppp-ioctl.h>
/linux-master/drivers/net/ppp/
H A Dppp_generic.c8 * /dev/ppp device, packet and VJ compression, and multilink.
32 #include <linux/ppp-ioctl.h>
34 #include <linux/ppp-comp.h>
75 * An instance of /dev/ppp can be associated with either a ppp
76 * interface unit or a ppp channel. In both cases, file->private_data
85 wait_queue_head_t rwait; /* for poll on reading /dev/ppp */
86 refcount_t refcnt; /* # refs (incl /dev/ppp attached) */
94 #define PF_TO_PPP(pf) PF_TO_X(pf, struct ppp)
100 * are stored in dev->stats of the ppp strucut
115 struct ppp { struct
176 struct ppp *ppp; /* ppp unit we're connected to */ member in struct:channel
401 struct ppp *ppp; local
455 struct ppp *ppp = PF_TO_PPP(pf); local
551 struct ppp *ppp = PF_TO_PPP(pf); local
704 struct ppp *ppp; local
978 struct ppp *ppp = PF_TO_PPP(pf); local
1035 struct ppp *ppp; local
1127 struct ppp *ppp; local
1158 ppp_unit_register(struct ppp *ppp, int unit, bool ifname_is_set) argument
1224 struct ppp *ppp = netdev_priv(dev); local
1358 struct ppp *ppp = netdev_priv(dev); local
1430 struct ppp *ppp = netdev_priv(dev); local
1475 struct ppp *ppp = netdev_priv(dev); local
1517 struct ppp *ppp = netdev_priv(dev); local
1538 struct ppp *ppp; local
1554 struct ppp *ppp = netdev_priv(dev); local
1573 struct ppp *ppp; local
1583 struct ppp *ppp = netdev_priv(ctx->dev); local
1636 __ppp_xmit_process(struct ppp *ppp, struct sk_buff *skb) argument
1659 ppp_xmit_process(struct ppp *ppp, struct sk_buff *skb) argument
1684 pad_compress_skb(struct ppp *ppp, struct sk_buff *skb) argument
1739 ppp_send_frame(struct ppp *ppp, struct sk_buff *skb) argument
1859 ppp_push(struct ppp *ppp) argument
1915 ppp_mp_explode(struct ppp *ppp, struct sk_buff *skb) argument
2144 struct ppp *ppp; local
2193 ppp_do_recv(struct ppp *ppp, struct sk_buff *skb, struct channel *pch) argument
2346 ppp_receive_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch) argument
2365 ppp_receive_error(struct ppp *ppp) argument
2373 ppp_receive_nonmp_frame(struct ppp *ppp, struct sk_buff *skb) argument
2517 ppp_decompress_frame(struct ppp *ppp, struct sk_buff *skb) argument
2590 ppp_receive_mp_frame(struct ppp *ppp, struct sk_buff *skb, struct channel *pch) argument
2690 ppp_mp_insert(struct ppp *ppp, struct sk_buff *skb) argument
2712 ppp_mp_reconstruct(struct ppp *ppp) argument
3017 ppp_set_compress(struct ppp *ppp, struct ppp_option_data *data) argument
3086 ppp_ccp_peek(struct ppp *ppp, struct sk_buff *skb, int inbound) argument
3171 ppp_ccp_closed(struct ppp *ppp) argument
3279 ppp_get_stats(struct ppp *ppp, struct ppp_stats *st) argument
3320 struct ppp *ppp; local
3368 ppp_destroy_interface(struct ppp *ppp) argument
3452 struct ppp *ppp; local
3504 struct ppp *ppp; local
[all...]
H A Dpppox.c27 #include <linux/ppp-ioctl.h>
55 /* Clear connection to ppp device, if attached. */
H A Dppp_mppe.c57 #include <linux/ppp-comp.h>
66 MODULE_ALIAS("ppp-compress-" __stringify(CI_MPPE));
H A Dppp_deflate.c16 #include <linux/ppp-comp.h>
635 MODULE_ALIAS("ppp-compress-" __stringify(CI_DEFLATE));
636 MODULE_ALIAS("ppp-compress-" __stringify(CI_DEFLATE_DRAFT));
H A Dppp_synctty.c5 * This is a ppp channel driver that can be used with tty device drivers
38 #include <linux/ppp-ioctl.h>
74 struct ppp_channel chan; /* interface to generic ppp layer */
128 * we use a single global rwlock for all ttys in ppp line discipline.
255 * Pppd reads and writes packets via /dev/ppp instead.
266 * from the ppp generic stuff.
H A Dbsd_comp.c74 #include <linux/ppp-comp.h>
143 unsigned char unit; /* ppp unit number */
531 printk ("<9>ppp: lens_ptr(%d) > max\n", idx);
541 printk ("<9>ppp: dict_ptr(%d) > max\n", idx);
889 * Fill in the ppp header, but not the last byte of the protocol
1171 MODULE_ALIAS("ppp-compress-" __stringify(CI_BSD_COMPRESS));
H A Dpptp.c21 #include <linux/ppp-ioctl.h>
H A Dpppoe.c41 * 121301 : New ppp channels interface; cannot unregister a channel
70 #include <linux/ppp-ioctl.h>
H A Dppp_async.c25 #include <linux/ppp-ioctl.h>
70 struct ppp_channel chan; /* interface to generic ppp layer */
126 * we use a single global rwlock for all ttys in ppp line discipline.
258 * Pppd reads and writes packets via /dev/ppp instead.
269 * from the ppp generic stuff.
367 .name = "ppp",
/linux-master/drivers/net/
H A DMakefile58 obj-$(CONFIG_PPP) += ppp/
59 obj-$(CONFIG_PPP_ASYNC) += ppp/
60 obj-$(CONFIG_PPP_BSDCOMP) += ppp/
61 obj-$(CONFIG_PPP_DEFLATE) += ppp/
62 obj-$(CONFIG_PPP_MPPE) += ppp/
63 obj-$(CONFIG_PPP_SYNC_TTY) += ppp/
64 obj-$(CONFIG_PPPOE) += ppp/
65 obj-$(CONFIG_PPPOL2TP) += ppp/
66 obj-$(CONFIG_PPTP) += ppp/
/linux-master/drivers/net/wan/
H A Dhdlc_ppp.c72 struct ppp { struct
105 static inline struct ppp *get_ppp(struct net_device *dev)
107 return (struct ppp *)dev_to_hdlc(dev)->state;
112 struct ppp *ppp = get_ppp(dev); local
116 return &ppp->protos[IDX_LCP];
118 return &ppp->protos[IDX_IPCP];
120 return &ppp->protos[IDX_IPV6CP];
303 struct ppp *ppp local
437 struct ppp *ppp = get_ppp(dev); local
565 struct ppp *ppp = get_ppp(proto->dev); local
617 struct ppp *ppp = get_ppp(dev); local
661 struct ppp *ppp; local
[all...]
/linux-master/include/linux/
H A Dppp-comp.h3 * ppp-comp.h - Definitions for doing PPP packet compression.
10 #include <uapi/linux/ppp-comp.h>
H A Dppp_channel.h31 /* Handle an ioctl call that has come in via /dev/ppp. */
43 void *ppp; /* opaque to channel */ member in struct:ppp_channel
/linux-master/arch/powerpc/platforms/powermac/
H A Dbootx_init.c95 u32 *ppp = &np->properties; local
97 while(*ppp) {
99 (struct bootx_dt_prop *)(base + *ppp);
105 ppp = &pp->next;
222 u32 *cpp, *ppp = &np->properties; local
251 while (*ppp) {
253 (struct bootx_dt_prop *)(base + *ppp);
263 ppp = &pp->next;
280 u32 *cpp, *ppp = &np->properties; local
310 while (*ppp) {
[all...]
/linux-master/fs/freevxfs/
H A Dvxfs_lookup.c46 * @ppp: gets filled with the page the return value sits in
50 * cache entry @dp. @ppp will be filled with the page the return
57 vxfs_find_entry(struct inode *ip, struct dentry *dp, struct page **ppp) argument
105 *ppp = pp;
/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_fdir.h138 u8 ppp:1, member in struct:ice_fdir_udp_gtp
/linux-master/net/atm/
H A Dpppoatm.c44 #include <linux/ppp-ioctl.h>
67 struct ppp_channel chan; /* interface to generic ppp layer */
100 * We can't do this directly from our _pop handler, since the ppp code
204 if (pvcc->chan.ppp == NULL) { /* Not bound yet! */
369 /* This handles ioctls sent to the /dev/ppp interface */
/linux-master/drivers/tty/ipwireless/
H A Dnetwork.c26 #include <linux/ppp-ioctl.h>
45 /* True if ppp needs waking up once we're ready to xmit */
81 ": ppp unblocked\n");
89 * Called by the ppp system when it has a packet to send to the hardware.
144 * Otherwise reject the packet, and flag that the ppp system
150 printk(KERN_DEBUG IPWIRELESS_PCCARD_NAME ": ppp blocked\n");
155 /* Handle an ioctl call that has come in via ppp. (copy of ppp_async_ioctl() */
H A Dtty.c24 #include <linux/ppp-ioctl.h>
/linux-master/drivers/net/ethernet/broadcom/
H A Dbcmsysport.h530 u32 ppp; /* RO # of PPP pkt */ member in struct:bcm_sysport_rx_counters
H A Dbcmsysport.c254 STAT_MIB_RX("rx_ppp", mib.rx.ppp),
/linux-master/drivers/net/ethernet/broadcom/genet/
H A Dbcmgenet.h110 u32 ppp; /* RO # of PPP pkt */ member in struct:bcmgenet_rx_counters
/linux-master/drivers/isdn/capi/
H A Dcapi.c30 #include <linux/ppp-ioctl.h>
/linux-master/net/l2tp/
H A Dl2tp_ppp.c83 #include <linux/ppp-ioctl.h>
338 * The supplied skb from ppp doesn't have enough headroom for the

Completed in 269 milliseconds

12