Commit e022c2f0 authored by Krzysztof Hałasa's avatar Krzysztof Hałasa
Browse files

WAN: new synchronous PPP implementation for generic HDLC.



Signed-off-by: default avatarKrzysztof Hałasa <khc@pm.waw.pl>
parent e1f024eb
Loading
Loading
Loading
Loading
+4 −4
Original line number Original line Diff line number Diff line
@@ -3,15 +3,15 @@ Krzysztof Halasa <khc@pm.waw.pl>




Generic HDLC layer currently supports:
Generic HDLC layer currently supports:
1. Frame Relay (ANSI, CCITT, Cisco and no LMI).
1. Frame Relay (ANSI, CCITT, Cisco and no LMI)
   - Normal (routed) and Ethernet-bridged (Ethernet device emulation)
   - Normal (routed) and Ethernet-bridged (Ethernet device emulation)
     interfaces can share a single PVC.
     interfaces can share a single PVC.
   - ARP support (no InARP support in the kernel - there is an
   - ARP support (no InARP support in the kernel - there is an
     experimental InARP user-space daemon available on:
     experimental InARP user-space daemon available on:
     http://www.kernel.org/pub/linux/utils/net/hdlc/).
     http://www.kernel.org/pub/linux/utils/net/hdlc/).
2. raw HDLC - either IP (IPv4) interface or Ethernet device emulation.
2. raw HDLC - either IP (IPv4) interface or Ethernet device emulation
3. Cisco HDLC.
3. Cisco HDLC
4. PPP (uses syncppp.c).
4. PPP
5. X.25 (uses X.25 routines).
5. X.25 (uses X.25 routines).


Generic HDLC is a protocol driver only - it needs a low-level driver
Generic HDLC is a protocol driver only - it needs a low-level driver
+1 −1
Original line number Original line Diff line number Diff line
@@ -14,7 +14,7 @@ obj-$(CONFIG_HDLC_RAW) += hdlc_raw.o
obj-$(CONFIG_HDLC_RAW_ETH)	+= hdlc_raw_eth.o
obj-$(CONFIG_HDLC_RAW_ETH)	+= hdlc_raw_eth.o
obj-$(CONFIG_HDLC_CISCO)	+= hdlc_cisco.o
obj-$(CONFIG_HDLC_CISCO)	+= hdlc_cisco.o
obj-$(CONFIG_HDLC_FR)		+= hdlc_fr.o
obj-$(CONFIG_HDLC_FR)		+= hdlc_fr.o
obj-$(CONFIG_HDLC_PPP)		+= hdlc_ppp.o	syncppp.o
obj-$(CONFIG_HDLC_PPP)		+= hdlc_ppp.o
obj-$(CONFIG_HDLC_X25)		+= hdlc_x25.o
obj-$(CONFIG_HDLC_X25)		+= hdlc_x25.o


pc300-y				:= pc300_drv.o
pc300-y				:= pc300_drv.o
+601 −47

File changed.

Preview size limit exceeded, changes collapsed.