@@ -3,12 +3,22 @@ #import @interface SSLSocket: OFTCPSocket { SSL *ssl; + OFString *privateKeyFile; + OFString *certificateFile; } -- initWithSocket: (OFTCPSocket*)socket; +#ifdef OF_HAVE_PROPERTIES +@property (copy) OFString *privateKeyFile; +@property (copy) OFString *certificateFile; +#endif +- initWithSocket: (OFTCPSocket*)socket; /* Change the return type */ - (SSLSocket*)accept; +- (void)setPrivateKeyFile: (OFString*)file; +- (OFString*)privateKeyFile; +- (void)setCertificateFile: (OFString*)file; +- (OFString*)certificateFile; @end