mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-04-29 20:27:49 +02:00
fix NetDb save bug, console cyrillic symbols, add files to project
This commit is contained in:
parent
72fcff35b6
commit
bc3bf838d9
4 changed files with 17 additions and 1 deletions
8
i2p.cpp
8
i2p.cpp
|
@ -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 ();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue