summaryrefslogtreecommitdiff
path: root/s/client.h
diff options
context:
space:
mode:
Diffstat (limited to 's/client.h')
-rw-r--r--s/client.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/s/client.h b/s/client.h
index 2e9fefe..a01b1de 100644
--- a/s/client.h
+++ b/s/client.h
@@ -17,6 +17,7 @@
*/
#include "../pch.h"
+#include "writeback_listener.h"
namespace mongo {
@@ -85,8 +86,8 @@ namespace mongo {
private:
struct WBInfo {
- WBInfo( ConnectionId c , OID o ) : connectionId( c ) , id( o ) {}
- ConnectionId connectionId;
+ WBInfo( const WriteBackListener::ConnectionIdent& c , OID o ) : ident( c ) , id( o ) {}
+ WriteBackListener::ConnectionIdent ident;
OID id;
};