summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ppp/proto.c
diff options
context:
space:
mode:
authorbrian <brian@FreeBSD.org>1999-05-12 09:49:12 +0000
committerbrian <brian@FreeBSD.org>1999-05-12 09:49:12 +0000
commit89ce3ea906517d4df3f75dc7721280428c5e6159 (patch)
tree9146deb551e427cf4160888e787361aab1620dd4 /usr.sbin/ppp/proto.c
parent174d713c5168fee5dbc7f58d899b5947f191ed9a (diff)
downloadFreeBSD-src-89ce3ea906517d4df3f75dc7721280428c5e6159.zip
FreeBSD-src-89ce3ea906517d4df3f75dc7721280428c5e6159.tar.gz
Allow ``host:port/udp'' devices and support ``host:port/tcp'' as
being the same as the previous (still supported) ``host:port'' syntax for tcp socket devices. A udp device uses synchronous ppp rather than async, and avoids the double-retransmit overhead that comes with ppp over tcp (it's usually a bad idea to transport IP over a reliable transport that itself is using an unreliable transport). PPP over UDP provides througput of ** 1.5Mb per second ** with all compression disabled, maxing out a PPro/200 when running ppp twice, back-to-back. This proves that PPPoE is plausable in userland.... This change adds a few more handler functions to struct device and allows derivations of struct device (which may contain their own data etc) to pass themselves through the unix domain socket for MP. ** At last **, struct physical has lost all the tty crud ! iov2physical() is now smart enough to restore the correct stack of layers so that MP servers will work again. The version number has bumped as our MP link transfer contents have changed (they now may contain a `struct device'). Don't extract the protocol twice in MP mode (resulting in protocol rejects for every MP packet). This was broken with my original layering changes. Add ``Physical'' and ``Sync'' log levels for logging the relevent raw packets and add protocol-tracking LogDEBUG stuff in various LayerPush & LayerPull functions. Assign our physical device name for incoming tcp connections by calling getpeername(). Assign our physical device name for incoming udp connections from the address retrieved by the first recvfrom().
Diffstat (limited to 'usr.sbin/ppp/proto.c')
-rw-r--r--usr.sbin/ppp/proto.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/usr.sbin/ppp/proto.c b/usr.sbin/ppp/proto.c
index 7ef2d47..d6d34d7 100644
--- a/usr.sbin/ppp/proto.c
+++ b/usr.sbin/ppp/proto.c
@@ -23,7 +23,7 @@
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
- * $Id:$
+ * $Id: proto.c,v 1.1 1999/05/08 11:07:32 brian Exp $
*/
#include <sys/types.h>
@@ -34,6 +34,7 @@
#include "layer.h"
#include "acf.h"
#include "defs.h"
+#include "log.h"
#include "timer.h"
#include "fsm.h"
#include "mbuf.h"
@@ -71,6 +72,7 @@ static struct mbuf *
proto_LayerPush(struct bundle *b, struct link *l, struct mbuf *bp,
int pri, u_short *proto)
{
+ log_Printf(LogDEBUG, "proto_LayerPush: Using 0x%04x\n", *proto);
bp = proto_Prepend(bp, *proto, l->lcp.his_protocomp,
acf_WrapperOctets(&l->lcp, *proto));
link_ProtocolRecord(l, *proto, PROTO_OUT);
@@ -101,6 +103,8 @@ proto_LayerPull(struct bundle *b, struct link *l, struct mbuf *bp,
} else
bp = mbuf_Read(bp, cp, 1);
+ log_Printf(LogDEBUG, "proto_LayerPull: unknown -> 0x%04x\n", *proto);
+
link_ProtocolRecord(l, *proto, PROTO_IN);
return bp;
OpenPOWER on IntegriCloud