Programming a server

I recorded my self derping around on a computer I never use. If you're interested in an hour long video, click here: http://www.youtube.com/watch?v=dVF6XiR3iQ8
Remember if you opted in for the Youtube HTML5 beta you can set the video speed to 2x Speed and watch it in half an hour!

For reference, the minimum code is this:
1
2
3
4
5
6
7
8
9
10
11
#include "Lacewing.h"

int main()
{
    Lacewing::EventPump ep;
    Lacewing::RelayServer rs (ep);

    rs.Host();

    sp.StartEventLoop();
}

I implemented all the callbacks though which is why the video is an hour long, plus I spent some time messing up because I wasn't prepared.
Topic archived. No new replies allowed.