AppleTLSSession: Remove unused private member

pull/122/head
Nils Maier 2013-08-24 20:08:15 +02:00
parent 522ae80fd4
commit 4418ebdedc
2 changed files with 1 additions and 3 deletions

View File

@ -294,8 +294,7 @@ TLSSession* TLSSession::make(TLSContext* ctx)
} }
AppleTLSSession::AppleTLSSession(AppleTLSContext* ctx) AppleTLSSession::AppleTLSSession(AppleTLSContext* ctx)
: ctx_(ctx), : sslCtx_(nullptr),
sslCtx_(nullptr),
sockfd_(0), sockfd_(0),
state_(st_constructed), state_(st_constructed),
lastError_(noErr), lastError_(noErr),

View File

@ -112,7 +112,6 @@ private:
return ((AppleTLSSession*)conn)->sockRead(data, len); return ((AppleTLSSession*)conn)->sockRead(data, len);
} }
AppleTLSContext *ctx_;
SSLContextRef sslCtx_; SSLContextRef sslCtx_;
sock_t sockfd_; sock_t sockfd_;
state_t state_; state_t state_;