cocoa asyncudpsockets 不发送字节流

发布于 2024-12-03 14:08:47 字数 488 浏览 1 评论 0原文

我有一个小的 MAC OS X 应用程序,它应该向服务器发送 UDP 数据报。

我想使用可可 asyncudpsockets (http://code.google.com/p/cocoaasyncsocket/) 来做到这一点,但我有一个问题,我调用“sendData”方法但没有任何反应。

[socket sendData:[NSData dataWithBytes:stream length:length] 
          toHost:host 
            port:(uint16)port 
     withTimeout:5 
             tag:1];

流是一个字节*,包含数据报主机是一个 IP 地址,如 NSString。

有人可以帮助我吗?

I have a little MAC OS X Application that should send a UDP Datagram to a server.

I want to use the cocoa asyncudpsockets (http://code.google.com/p/cocoaasyncsocket/) to do this, but i have the problem that i call the "sendData" method but nothing happens.

[socket sendData:[NSData dataWithBytes:stream length:length] 
          toHost:host 
            port:(uint16)port 
     withTimeout:5 
             tag:1];

stream is a Byte* contains the datagram host is a ip-address as NSString.

Can anybody help me?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没结果 2024-12-10 14:08:47

您是否正确设置了代表?

[socket setDelegate:self];

然后:

[socket connectToHost:(NSString *)host
               onPort:(UInt16)port
          withTimeout:(NSTimeInterval)timeout
                error:(NSError **)errPtr];

然后在委托方法中:

- (void)socket:(GCDAsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)port
{
    [sock writeData:[NSData dataWithBytes:stream length:length] withTimeout:TIMEOUT_NONE tag:TAG_HEADER];
}

希望它会有所帮助;-)

Did you correctly set the delegate ?

[socket setDelegate:self];

Then :

[socket connectToHost:(NSString *)host
               onPort:(UInt16)port
          withTimeout:(NSTimeInterval)timeout
                error:(NSError **)errPtr];

Then in the delegate method :

- (void)socket:(GCDAsyncSocket *)sock didConnectToHost:(NSString *)host port:(UInt16)port
{
    [sock writeData:[NSData dataWithBytes:stream length:length] withTimeout:TIMEOUT_NONE tag:TAG_HEADER];
}

Hope it will help ;-)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文