fixed some bugs, cleaned a lot of code,

re-added support for PPP
automatic detection of link-layer protocol
This commit is contained in:
Arnout Engelen
2004-09-14 11:23:59 +00:00
parent 23a56f95a6
commit a695b7db2a
8 changed files with 279 additions and 354 deletions

View File

@@ -20,6 +20,10 @@ public:
{
return val;
}
ConnList * setNext (ConnList * m_next)
{
next = m_next;
}
ConnList * getNext ()
{
return next;