mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-23 12:43:55 +08:00
9641458d3e
This protocol provides some connection handling and negotiated congestion control. Nokia cellular modems use it for bulk transfers. It provides packet boundaries (hence SOCK_SEQPACKET). Congestion control is per packet rather per byte, so we do not re-use the generic socket memory accounting. Signed-off-by: Rémi Denis-Courmont <remi.denis-courmont@nokia.com> Signed-off-by: David S. Miller <davem@davemloft.net>
12 lines
161 B
Makefile
12 lines
161 B
Makefile
obj-$(CONFIG_PHONET) += phonet.o pn_pep.o
|
|
|
|
phonet-objs := \
|
|
pn_dev.o \
|
|
pn_netlink.o \
|
|
socket.o \
|
|
datagram.o \
|
|
sysctl.o \
|
|
af_phonet.o
|
|
|
|
pn_pep-objs := pep.o
|