我目前正在 Mac 上的 Objective-C 中的服务器上工作,该服务器在特定端口上侦听传入数据。它已经适用于基于 NSStreams 的双向未加密数据传输。
在下一步中,我想通过 SSL/TLS 保护连接。目前,我正在遵循本页文档中描述的苹果方法。在概述中,他们描述了建立 SSL 连接的典型顺序。
我现在失败的地方是我必须给出表格的指针
typedef OSStatus (*SSLReadFunc) (
SSLConnectionRef connection,
void *data,
size_t *dataLength
);
在为 SSL-Connection 设置 I/O 函数的方法中,以便负责的对象可以调用这些方法来读取和写入我的流。我已经写了这两种方法
// Called by the secure transport to write data on the stream
-(OSStatus)sslWriteCallbackFunction:(SSLContextRef)context data:(const void *)data dataLength:(size_t)dataLength sizeOfProcessedData:(size_t *)processed{
processed = (size_t *)[_writeStream write:data maxLength:dataLength];
if (processed < 0)
return errSSLProtocol;
else if (processed==0)
return 0;
else
return errSSLWouldBlock;
}
// Called by the secure transport to read data from the stream
-(OSStatus) sslReadCallbackFunction:(SSLContextRef)context data:(const void *)data dataLength:(size_t)dataLength{
uint8_t buffer[dataLength];
NSInteger err = [_readStream read:buffer maxLength:dataLength];
if (err < 0)
// Error
return errSSLProtocol;
else if (err==0)
// All bytes have been read
return 0;
else
// err corresponds to the number of bytes read, so there are still bytes available
dataLength = err;
return errSSLWouldBlock;
}
并希望将它们设置在带有签名的方法中
OSStatus SSLSetIOFuncs (
SSLContextRef context,
SSLReadFunc readFunc,
SSLWriteFunc writeFunc
);
sslReadCallbackFunction
分别为要传递的方法readFunc
和write方法。
现在,如何创建指向上述表单的两种方法之一的指针。我已经尝试了很多,如果有人可以帮助我或指出正确的方向,我将非常感激。我使用了选择器,就&
在方法名前面,使用了self
,....的方法。
感谢您提供任何帮助,请注意我是 Objective-C 的新手;)