From b3d3395e01a015b440a84878c4d540dbaa437a32 Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Tue, 22 Nov 2011 09:36:30 +0100 Subject: s4:libcli/raw: add transport->ev as copy of transport->socket->event.ctx We'll remove transport->socket soon, but removing transport->ev will take a bit longer. metze --- source4/libcli/raw/libcliraw.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source4/libcli/raw/libcliraw.h') diff --git a/source4/libcli/raw/libcliraw.h b/source4/libcli/raw/libcliraw.h index b7b02c668e..1009f4353a 100644 --- a/source4/libcli/raw/libcliraw.h +++ b/source4/libcli/raw/libcliraw.h @@ -108,6 +108,8 @@ struct smbcli_options { /* this is the context for the client transport layer */ struct smbcli_transport { + struct tevent_context *ev; /* TODO: remove this !!! */ + /* socket level info */ struct smbcli_socket *socket; -- cgit