diff options
| author | Joseph Henry <joseph.henry@zerotier.com> | 2015-09-24 16:15:14 -0400 |
|---|---|---|
| committer | Joseph Henry <joseph.henry@zerotier.com> | 2015-09-24 16:15:14 -0400 |
| commit | c25ceaf06bc60edfa09281610d5c3c1c9f5f6706 (patch) | |
| tree | a8fe79d80a531b3ae4270351a0b916865eaa3fbe /netcon/LWIPStack.hpp | |
| parent | b263926ea66b7ab06b8f84755a68d21bdf6defe3 (diff) | |
| download | infinitytier-c25ceaf06bc60edfa09281610d5c3c1c9f5f6706.tar.gz infinitytier-c25ceaf06bc60edfa09281610d5c3c1c9f5f6706.zip | |
Fixed recursive lock problem in closeConnection
Diffstat (limited to 'netcon/LWIPStack.hpp')
| -rw-r--r-- | netcon/LWIPStack.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/netcon/LWIPStack.hpp b/netcon/LWIPStack.hpp index 82b06377..ee1a8871 100644 --- a/netcon/LWIPStack.hpp +++ b/netcon/LWIPStack.hpp @@ -145,6 +145,9 @@ public: void (*_netif_set_up)(NETIF_SET_UP_SIG); void (*_netif_poll)(NETIF_POLL_SIG); + + Mutex _lock; + LWIPStack(const char* path) : _libref(NULL) { |
