Is it possible to connect to a standard WebSocket host using the "ws" (ws://) prefix/scheme?
My host url looks like this:
ws://ws.pusherapp.com:80/app/APP_KEY?client=juce&version=0.1&protocol=6
I'm trying to connect to the following service: http://pusher.com/docs/pusher_protocol#websocket-connection , looks like they are using a standard WebSocket protocol.
StreamingSocket::connect()
returns false.
looks like
getaddrinfo
is the culprit.
Without going in too deep, is connecting to such a URL possible?
Thanks