Don't class-swizzle to call close on super.

This commit is contained in:
Jonathan Schleifer 2013-02-14 00:27:13 +01:00
parent eff94d1c96
commit 80b2cd676d
2 changed files with 9 additions and 12 deletions

View file

@ -43,8 +43,8 @@
- initWithSocket: (OFTCPSocket*)socket
privateKeyFile: (OFString*)privateKeyFile
certificateFile: (OFString*)certificateFile;
/* Change the return type */
- (SSLSocket*)accept;
- (void)SSL_super_close;
- (SSLSocket*)accept; /* Changes the return type */
- (void)setPrivateKeyFile: (OFString*)file;
- (OFString*)privateKeyFile;
- (void)setCertificateFile: (OFString*)file;