Example #1
0
        void StartServer()
        {
            SonicHttpServer sonicHttpServer = new SonicHttpServer(9595);

            sonicHttpServer.OnConnection += SonicHttpServer_OnConnection;
            sonicHttpServer.Start(2);
        }