diff options
author | Rémi Denis-Courmont <remi.denis-courmont@nokia.com> | 2008-10-05 11:15:13 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-10-05 11:15:13 -0700 |
commit | 9641458d3ec42def729fde64669abf07f3220cd5 (patch) | |
tree | 414a31324c800ad9ecc8665de7ffaa9eee963a0e /net/phonet/Makefile | |
parent | 9995a32b4d14dcda2f8df58030526bee91114c16 (diff) | |
download | linux-stable-9641458d3ec42def729fde64669abf07f3220cd5.tar.gz linux-stable-9641458d3ec42def729fde64669abf07f3220cd5.tar.bz2 linux-stable-9641458d3ec42def729fde64669abf07f3220cd5.zip |
Phonet: Pipe End Point for Phonet Pipes protocol
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>
Diffstat (limited to 'net/phonet/Makefile')
-rw-r--r-- | net/phonet/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/net/phonet/Makefile b/net/phonet/Makefile index ae9c3ed5be83..505df2a04a85 100644 --- a/net/phonet/Makefile +++ b/net/phonet/Makefile @@ -1,4 +1,4 @@ -obj-$(CONFIG_PHONET) += phonet.o +obj-$(CONFIG_PHONET) += phonet.o pn_pep.o phonet-objs := \ pn_dev.o \ @@ -7,3 +7,5 @@ phonet-objs := \ datagram.o \ sysctl.o \ af_phonet.o + +pn_pep-objs := pep.o |