Is there any way to disconnect a client with SocketIO, and literally close the connection? So if someone is connected to my server, and I want to close the connection between them and my server, how would I go about doing that?

link|improve this question
feedback

7 Answers

socket.disconnect() can be used only on the client side, not on the server side.

Client.emit('disconnect') triggers the disconnection event on the server, but does not effectively disconnect the client. The client is not aware of the disconnection.

So the question remain : how to force a client to disconnect from server side ?

link|improve this answer
feedback

Assuming your socket's named socket, use:

socket.disconnect()
link|improve this answer
Unfortunately, this doesn't work. I'm trying to close the connection to a specific client from the server-side. – Daniel Feb 19 '11 at 23:45
feedback

client._onDisconnect() should work

link|improve this answer
This works perfectly.. Im maintain my own mapping to clients.. using that mapping ... easily disconnecting clients.. cheers – Arenstar Mar 29 '11 at 15:20
2  
This doesn't work on 0.7. Any ideas? – mikermcneil Aug 25 '11 at 16:05
1  
what is client? a global? – Kato Dec 9 '11 at 15:26
feedback

This is not possible yet.

If you need it as well, vote/comment on this issue.

link|improve this answer
1  
The link's dead. – mikermcneil Aug 25 '11 at 16:05
They renamed the repo; link fixed. – nh2 Aug 27 '11 at 19:00
How about this issue: github.com/LearnBoost/socket.io/issues/513 – BMiner Nov 23 '11 at 16:18
feedback

For those who found this on google - there is a solution for this right now:

Socket.disconnect() kicks the client (server-side). No chance for the client to stay connected :)

link|improve this answer
feedback

Socket.io uses the EventEmitter pattern to disconnect/connect/check heartbeats so you could do. Client.emit('disconnect');

link|improve this answer
feedback

Any reason why you can't have the server emit a message to the client that makes it call the disconnect function?

On server:

socket.emit('forceDisconnect');

On client:

socket.on('forceDisconnect', function(){
    socket.disconnect();
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.