cocoaAsyncSocket を使用しています。私はそこからそれを手に入れました。AsyncUdpSocket オブジェクトは、このオブジェクトを初期化するときにのみ IP パケットを送信するのに役立ちます。[engineObject startSession] を使用して他のコントローラーの関数を呼び出すと、関数は機能しますが、AsyncUdpSocket オブジェクトは IP パケットを送信しません。デリゲート メソッドを呼び出す (またはトリガーする) ことはありません: didSendDataWithTag または didNotSendDataWithTag.....
私は何を間違えましたか?
.h
#import <Foundation/Foundation.h>
#import "AsyncUdpSocket.h"
@interface Engine : NSObject{
AsyncUdpSocket *asyncUdpSocket;
}
@property (atomic, strong) AsyncUdpSocket *asyncUdpSocket;
- (id) init;
- (BOOL) startSession;
- (void) doSomething;
@end
.m
@implementation Engine
- (id) init {
[self doSomething]; //<-----<< It can send ip packet out
self = [super init];
[self doSomething]; //<-----<< It can send ip packet out, with wrong bind source port
if (self){
}
return self;
}
- (BOOL) startSession{
[self doSomething]; //<-----<< It won't send any ip packet out
[self oxox];
return YES;
}
- (void) oxox{
[self doSomething]; //<-----<< It won't send any ip packet out
}
- (void) doSomething{
NSError *socketError=nil;
asyncUdpSocket = [[AsyncUdpSocket alloc] initWithDelegate:self];
if (![asyncUdpSocket bindToPort:7701
error:&socketError]){
NSLog(@"RASEngine: Bind to Port fail");
}
[asyncUdpSocket enableBroadcast:NO error:&socketError];
uint8_t signalBytes[] = {0x07, 0x07, 0x01, 0x06, 0x12, 0x34, 0x56, 0x78};
NSData *signalData = [NSData dataWithBytes:signalBytes length:8];
[asyncUdpSocket sendData:signalData //<--------<< It is called every time, but doesn't send anything out.
toHost:@"192.168.16.18"
port:9902
withTimeout:-1
tag:0];
}
#pragma mark -
#pragma mark AsyncUdpSocket Delegate for UDP
- (void)onUdpSocket:(AsyncUdpSocket *)sock didSendDataWithTag:(long)tag{
NSLog(@"UDP Engine: onUdpSocket:didSendDataWithTag:%ld", tag);
}
- (void)onUdpSocket:(AsyncUdpSocket *)sock didNotSendDataWithTag:(long)tag dueToError:(NSError *)error{
NSLog(@"UDP Engine: onUdpSocket:didNotSendDataWithTag:%ld", tag);
}
@end