Minor changes: fix some problems with PPPoE include path, add small comments in slip.c (unusual octal values?)

This commit is contained in:
fbernon
2007-11-30 17:22:20 +00:00
parent 2942157ca4
commit e5a98b6a5b
5 changed files with 16 additions and 9 deletions

View File

@@ -67,7 +67,7 @@
#include <string.h>
#if PPPOE_SUPPORT
#include "ppp_oe.h"
#include "netif/ppp_oe.h"
#else
#define PPPOE_MAXMTU PPP_MAXMRU
#endif

View File

@@ -102,7 +102,7 @@
#include "vj.h"
#endif /* VJ_SUPPORT */
#if PPPOE_SUPPORT
#include "ppp_oe.h"
#include "netif/ppp_oe.h"
#endif /* PPPOE_SUPPORT */
#include <string.h>

View File

@@ -73,12 +73,13 @@
#if PPPOE_SUPPORT /* don't build if not configured for use in lwipopts.h */
#include "ppp.h"
#include "ppp_oe.h"
#include "pppdebug.h"
#include "netif/etharp.h"
#include "lwip/sys.h"
#include "netif/ppp_oe.h"
#include "netif/etharp.h"
#include "queue.h"
#include <string.h>