diff options
author | Christian Pointner <equinox@anytun.org> | 2010-01-08 03:48:56 +0000 |
---|---|---|
committer | Christian Pointner <equinox@anytun.org> | 2010-01-08 03:48:56 +0000 |
commit | ff9f5aee4b685b8c705bd39d5768eec75a50c5c2 (patch) | |
tree | 7136ee43b71761ac39a7f95473d8c448d0d0266c /src/anytun.cpp | |
parent | moved to resolver iterator at onResolve callback functions (diff) |
UDPPacketSource now opens one socket for each resolved endpoint
Diffstat (limited to 'src/anytun.cpp')
-rw-r--r-- | src/anytun.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/anytun.cpp b/src/anytun.cpp index 200b33d..bdd5b65 100644 --- a/src/anytun.cpp +++ b/src/anytun.cpp @@ -97,7 +97,7 @@ void createConnection(const PacketSourceEndpoint& remote_end, window_size_t seqS #endif } -void createConnectionResolver(const PacketSourceResolverIt& it, window_size_t seqSize, mux_t mux) +void createConnectionResolver(PacketSourceResolverIt& it, window_size_t seqSize, mux_t mux) { createConnection(*it, seqSize, mux); } |