Skip to content

Instantly share code, notes, and snippets.

@RklAlx
RklAlx / ChangeSocketTimeout.cpp
Created September 27, 2013 10:50
Change Socket Timeout
bool ChangeSocketTimeout(int nHeartBeat) // nHeartBeat - value in milliseconds
{
if(setsockopt(m_Socket, SOL_SOCKET, SO_RCVTIMEO, (const char *) &nHeartBeat, sizeof(nHeartBeat)) == SOCKET_ERROR)
{
printf("Error: %d\n", WSAGetLastError());
return false;
}
return true;
}
@RklAlx
RklAlx / 0_reuse_code.js
Created September 27, 2013 10:38
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console