Pregunta

Estoy tratando de enviar y recibir un mensaje usando GCDASYNCSocket y no puedo hacer que funcione.

Estoy estableciendo con éxito la conexión y la escritura de mensajes, pero cuando se trata de leer a mi delegado nunca se llama.

Estoy usando iOS5 y esta configuración:

Cliente:

-(void) connectToHost:(HostAddress*)host{

    NSLog(@"Trying to connect to host %@", host.hostname);

    if (asyncSocket == nil)
    {
        asyncSocket = [[GCDAsyncSocket alloc] initWithDelegate:self delegateQueue:dispatch_get_main_queue()];

        NSError *err = nil;
        if ([asyncSocket connectToHost:host.hostname onPort:host.port error:&err])
        {
            NSLog(@"Connected to %@", host.hostname);

            NSString *welcomMessage = @"Hello from the client\r\n";
            [asyncSocket writeData:[welcomMessage dataUsingEncoding:NSUTF8StringEncoding] withTimeout:-1 tag:1];

            [asyncSocket readDataWithTimeout:-1 tag:0];
        }else
            NSLog(@"%@", err);
    }

}

El método delegado DidreadData no se llama

-(void)socket:(GCDAsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag{

    NSLog(@"MESSAGE: %@", [NSString stringWithUTF8String:[data bytes]]);

}

Servidor

-(void)viewDidLoad{

    asyncSocket = [[GCDAsyncSocket alloc] initWithDelegate:self delegateQueue:dispatch_get_main_queue()];

    connectedSockets = [[NSMutableArray alloc] init];

    NSError *err = nil;
    if ([asyncSocket acceptOnPort:0 error:&err]){

        UInt16 port = [asyncSocket localPort];

        //...bojour stuff
    }
    else{
        NSLog(@"Error in acceptOnPort:error: -> %@", err);
    }

}

Escriba un mensaje al cliente y espere la respuesta en la conexión de socket exitosa

- (void)socket:(GCDAsyncSocket *)sock didAcceptNewSocket:(GCDAsyncSocket *)newSocket
{
    NSLog(@"Accepted new socket from %@:%hu", [newSocket connectedHost], [newSocket connectedPort]);

    // The newSocket automatically inherits its delegate & delegateQueue from its parent.

    [connectedSockets addObject:newSocket];

    NSString *welcomMessage = @"Hello from the server\r\n";
    [asyncSocket writeData:[welcomMessage dataUsingEncoding:NSUTF8StringEncoding] withTimeout:-1 tag:1];

    [asyncSocket readDataWithTimeout:-1 tag:0];

}

Y esto no se llama nunca ...

-(void)socket:(GCDAsyncSocket *)sock didReadData:(NSData *)data withTag:(long)tag{
    NSLog(@"New message from client... ");
}
¿Fue útil?

Solución

Ok, encontré la respuesta.

El problema era que estaba escribiendo y leyendo en mi propio enchufe en lugar del enchufe conectado.

SEX: (cambiado asyncSocket a newSocket)

- (void)socket:(GCDAsyncSocket *)sock didAcceptNewSocket:(GCDAsyncSocket *)newSocket
{
    NSLog(@"Accepted new socket from %@:%hu", [newSocket connectedHost], [newSocket connectedPort]);

    // The newSocket automatically inherits its delegate & delegateQueue from its parent.

    [connectedSockets addObject:newSocket];

    NSString *welcomMessage = @"Hello from the server\r\n";
    [newSocket writeData:[welcomMessage dataUsingEncoding:NSUTF8StringEncoding] withTimeout:-1 tag:1];

    [newSocket readDataWithTimeout:-1 tag:0];

}
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top