// HttpdDemo.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
volatile bool g_bQuit = false;
volatile long g_iThreadCount = 0;
char g_sContentPath[512];
void MainThread(void*);
void ConnectionThread(void*);
int _tmain(int argc, _TCHAR* argv[])
{
::GetModuleFileNameA(NULL, g_sContentPath, 512);
{
int i = strlen(g_sContentPath) - 1;
while ((i >= 0) && (g_sContentPath[i] != '\\')) {
i--;
}
i--;
while ((i >= 0) && (g_sContentPath[i] != '\\')) {
i--;
}
g_sContentPath[i + 1] = 0;
strcat(g_sContentPath, "content");
};
{
WSADATA WSAData;
WSAStartup(MAKEWORD(2, 1), &WSAData);
}
printf("Starting in path %s\r\n", g_sContentPath);
while (!g_bQuit) {
if (kbhit()) {
char c = getch();
if (c == 27) {
g_bQuit = true;
}
}
::Sleep(50);
}
printf("Waiting for threads to finish...\r\n");
while (g_iThreadCount > 0) {
::Sleep(50);
}
printf("Finished.\r\n");
::WSACleanup();
return 0;
}
{"html5":"htmlmixed","css":"css","javascript":"javascript","php":"php","python":"python","ruby":"ruby","lua":"text\/x-lua","bash":"text\/x-sh","go":"go","c":"text\/x-csrc","cpp":"text\/x-c++src","diff":"diff","latex":"stex","sql":"sql","xml":"xml","apl":"apl","asterisk":"asterisk","c_loadrunner":"text\/x-csrc","c_mac":"text\/x-csrc","coffeescript":"text\/x-coffeescript","csharp":"text\/x-csharp","d":"d","ecmascript":"javascript","erlang":"erlang","groovy":"text\/x-groovy","haskell":"text\/x-haskell","haxe":"text\/x-haxe","html4strict":"htmlmixed","java":"text\/x-java","java5":"text\/x-java","jquery":"javascript","mirc":"mirc","mysql":"sql","ocaml":"text\/x-ocaml","pascal":"text\/x-pascal","perl":"perl","perl6":"perl","plsql":"sql","properties":"text\/x-properties","q":"text\/x-q","scala":"scala","scheme":"text\/x-scheme","tcl":"text\/x-tcl","vb":"text\/x-vb","verilog":"text\/x-verilog","yaml":"text\/x-yaml","z80":"text\/x-z80"}