diff options
author | Othmar Gsenger <otti@anytun.org> | 2008-02-28 17:44:08 +0000 |
---|---|---|
committer | Othmar Gsenger <otti@anytun.org> | 2008-02-28 17:44:08 +0000 |
commit | 54cbc83f2f67b068e767b6a8dadeb760af289d77 (patch) | |
tree | 91592f00d726f29bd807a4421eee24c5b5de60c0 /connectionList.cpp | |
parent | further routing fixes (diff) |
added control interface
Diffstat (limited to 'connectionList.cpp')
-rw-r--r-- | connectionList.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/connectionList.cpp b/connectionList.cpp index f3bb129..3c86d71 100644 --- a/connectionList.cpp +++ b/connectionList.cpp @@ -67,6 +67,16 @@ const ConnectionMap::iterator ConnectionList::getEnd() return connections_.end(); } +ConnectionMap::iterator ConnectionList::getBeginUnlocked() +{ + return connections_.begin(); +} + +ConnectionMap::iterator ConnectionList::getEndUnlocked() +{ + return connections_.end(); +} + const ConnectionMap::iterator ConnectionList::getConnection(u_int16_t mux) { Lock lock(mutex_); |