fix NetDb save bug, console cyrillic symbols, add files to project

This commit is contained in:
chertov 2014-01-25 10:58:11 +04:00
parent 72fcff35b6
commit bc3bf838d9
4 changed files with 17 additions and 1 deletions

View file

@ -13,6 +13,14 @@
int main( int, char** )
{
#ifdef _WIN32
setlocale(LC_CTYPE, "");
SetConsoleCP(1251);
SetConsoleOutputCP(1251);
setlocale(LC_ALL, "Russian");
#endif
i2p::util::HTTPServer httpServer (7070);
httpServer.Start ();