ObjOpenSSL  SSLSocket.h at [fe3303caf8]

File SSLSocket.h artifact af6ab49c20 part of check-in fe3303caf8


#include <openssl/ssl.h>

#import <ObjFW/OFTCPSocket.h>

@interface SSLSocket: OFTCPSocket
{
	SSL_CTX *ctx;
	SSL *ssl;
	BOOL handsShaken;
}

/* Change the return type */
- (SSLSocket*)accept;
@end