diff options
author | Jelte Jansen <jelte@isc.org> | 2011-03-02 14:48:39 +0100 |
---|---|---|
committer | Jelte Jansen <jelte@isc.org> | 2011-03-02 14:48:39 +0100 |
commit | 68c33a7725a2e41dab53b4d74e2aedec79090380 (patch) | |
tree | 147a75bd66d1d8350c6f2c32e654314fdef7f218 /src/lib/asiolink/tcp_socket.h | |
parent | [trac495] update some tests (diff) | |
download | kea-68c33a7725a2e41dab53b4d74e2aedec79090380.tar.xz kea-68c33a7725a2e41dab53b4d74e2aedec79090380.zip |
[trac495] more recursive_query to lib/resolve
Diffstat (limited to 'src/lib/asiolink/tcp_socket.h')
-rw-r--r-- | src/lib/asiolink/tcp_socket.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/asiolink/tcp_socket.h b/src/lib/asiolink/tcp_socket.h index 5a85aaa633..4f5a81ee3d 100644 --- a/src/lib/asiolink/tcp_socket.h +++ b/src/lib/asiolink/tcp_socket.h @@ -200,8 +200,8 @@ TCPSocket<C>::open(const IOEndpoint* endpoint, C&) { // an exception if this is the case. template <typename C> void -TCPSocket<C>::asyncSend(const void* data, size_t length, - const IOEndpoint* endpoint, C& callback) +TCPSocket<C>::asyncSend(const void*, size_t, + const IOEndpoint* endpoint, C&) { if (isopen_) { @@ -232,8 +232,8 @@ TCPSocket<C>::asyncSend(const void* data, size_t length, // the need for the socket to be open. template <typename C> void -TCPSocket<C>::asyncReceive(void* data, size_t length, size_t, - IOEndpoint* endpoint, C& callback) +TCPSocket<C>::asyncReceive(void*, size_t, size_t, + IOEndpoint* endpoint, C&) { if (isopen_) { |