diff options
Diffstat (limited to 'netcon/NetconEthernetTap.hpp')
-rw-r--r-- | netcon/NetconEthernetTap.hpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/netcon/NetconEthernetTap.hpp b/netcon/NetconEthernetTap.hpp index b93ad9c6..6e0451ff 100644 --- a/netcon/NetconEthernetTap.hpp +++ b/netcon/NetconEthernetTap.hpp @@ -84,6 +84,8 @@ public: void threadMain() throw(); + LWIPStack *lwipstack; + private: // LWIP callbacks @@ -141,11 +143,11 @@ private: NetconConnection *getConnectionByPCB(struct tcp_pcb *pcb); NetconClient *getClientByPCB(struct tcp_pcb *pcb); void closeClient(NetconClient *client); + void closeConnection(NetconConnection *conn); Phy<NetconEthernetTap *> _phy; PhySocket *_unixListenSocket; - LWIPStack *lwipstack; std::vector<NetconClient*> clients; uint64_t _nwid; |