GCDAsyncSocket多个连接?

时间:2014-08-13 22:45:53

标签: ios tcp wifi gcdasyncsocket

我已经在使用GCDAsyncSocket连接2台设备。一个广播自己接受连接,另一个接听和请求连接。 如果我尝试将另一台设备连接到仍然正在广播的主机,则连接会在第一台设备仍然连接时终止连接!

如何重构我的代码以接受多个连接?我错过了什么?请帮助,我正在努力想出这个!这是我的代码:

- (void)startBroadcast {
    // Initialize GCDAsyncSocket
    self.socket = [[GCDAsyncSocket alloc] initWithDelegate:self delegateQueue:dispatch_get_main_queue()];

    // Start Listening for Incoming Connections
    NSError *error = nil;
    if ([self.socket acceptOnPort:0 error:&error]) {
        // Initialize Service
        self.service = [[NSNetService alloc] initWithDomain:@"local." type:@"_iQuest._tcp." name:@"" port:[self.socket localPort]];

        // Configure Service
        [self.service setDelegate:self];

        // Publish Service
        [self.service publish];

    } else {
        NSLog(@"Unable to create socket. Error %@ with user info %@.", error, [error userInfo]);
    }
}

   - (void)socket:(GCDAsyncSocket *)socket didAcceptNewSocket:(GCDAsyncSocket *)newSocket {
        NSLog(@"Accepted New Socket from %@:%hu", [newSocket connectedHost], [newSocket connectedPort]);
        NSString *alertmsg = [NSString stringWithFormat:@"Client is now connected to %@.", self.service.name];
        UIAlertView *Connection = [[UIAlertView alloc] initWithTitle:@"Connection Success!" message:alertmsg delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
        [Connection show];

        [self setSocket:newSocket];
        [connectedSockets addObject:newSocket];

            // Read Data from Socket
        [newSocket readDataToLength:sizeof(uint64_t) withTimeout:-1.0 tag:0];
    }

    - (void)socket:(GCDAsyncSocket *)socket didReadData:(NSData *)data withTag:(long)tag {
        if (tag == 0) {
            uint64_t bodyLength = [self parseHeader:data];
            [socket readDataToLength:bodyLength withTimeout:-1.0 tag:1];

        } else if (tag == 1) {
            [self parseBody:data];
            [socket readDataToLength:sizeof(uint64_t) withTimeout:-1.0 tag:0];
        }
    }

1 个答案:

答案 0 :(得分:4)

好的,我明白了!我希望这对未来的某些人有所帮助:

- (void)startBroadcast {
    //socketQueue = dispatch_queue_create("socketQueue", NULL);

    self.socket = [[GCDAsyncSocket alloc] initWithDelegate:self delegateQueue:dispatch_get_main_queue()];
    // Setup an array to store all accepted client connections
    connectedSockets = [[NSMutableArray alloc] initWithCapacity:20];


    // Start Listening for Incoming Connections
    NSError *error = nil;
    if ([self.socket acceptOnPort:0 error:&error]) {
        // Initialize Service
        self.service = [[NSNetService alloc] initWithDomain:@"local." type:@"_iQuest._tcp." name:@"" port:[self.socket localPort]];

        // Configure Service
        [self.service setDelegate:self];

        // Publish Service
        [self.service publish];

    } else {
        NSLog(@"Unable to create socket. Error %@ with user info %@.", error, [error userInfo]);
    }
}

- (void)socket:(GCDAsyncSocket *)socket didAcceptNewSocket:(GCDAsyncSocket *)newSocket {
    NSLog(@"Accepted New Socket from %@:%hu", [newSocket connectedHost], [newSocket connectedPort]);
    NSString *alertmsg = [NSString stringWithFormat:@"Client is now connected to %@.", self.service.name];
    UIAlertView *Connection = [[UIAlertView alloc] initWithTitle:@"Connection Success!" message:alertmsg delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
    [Connection show];

    @synchronized(connectedSockets)
    {
        dispatch_async(dispatch_get_main_queue(), ^{
            [connectedSockets addObject:newSocket];
        });
    }


    // Read Data from Socket
    [newSocket readDataToLength:sizeof(uint64_t) withTimeout:-1.0 tag:0];
}