ObjFW  Diff

Differences From Artifact [ad70118309]:

To Artifact [319a08ef71]:


19
20
21
22
23
24
25

26
27
28

29

30
31
32
33
34
19
20
21
22
23
24
25
26
27
28

29
30
31
32
33
34
35
36







+


-
+

+






#import "OFTLSStream.h"

#include <gnutls/gnutls.h>

OF_ASSUME_NONNULL_BEGIN

OF_SUBCLASSING_RESTRICTED
@interface OFGnuTLSTLSStream: OFTLSStream <OFStreamDelegate>
{
	bool _initialized, _handshakeDone;
	bool _server, _handshakeDone;
	gnutls_session_t _session;
	gnutls_certificate_credentials_t _credentials;
	OFString *_host;
}
@end

OF_ASSUME_NONNULL_END