on the server side i got
socket.on('chat', function (data) {
    io.sockets.socket(data.clientid).emit('chat', {
        msg: data.msg,
        senderid : senderid
    });
});
How can I get the get the senderid without the sender having to post their clientid through with the message?