NSString *urlString = @"ip address";
self.webSocket = [[SRWebSocket alloc] initWithURLRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:urlString]]];
self.webSocket.delegate = self;
[self.webSocket open];
It didCloseWithCodeis called with reason Stream end encountered.
Any ideas on what could go wrong?
source
share