Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 02/08/18 in all areas

  1. M2 Download Center Download Here ( Internal ) Hair pinned with Japanese pins only for shaman lady. Such a curiosity - Hair pinned with Japanese pins called Kanzashi. In the Japanese culture, the material of which the pins were made was evidence of a person's social status. High ranking aristocrats had the right to wear gold pins, middle ranking aristocrats had the right to wear silver pins, and ordinary people, regardless of their material status, had to settle for brass pins. Download: [Hidden Content]
    1 point
  2. Hi, everyone. Most people know when you are trying to connect the server with a lot of people, the server can not respond to you or something might go wrong. This example is same for warp too. Webzen did something about this too and I'd like to share it with you. What are exactly are we doing? If the client can not connect to the server, the client will wait one second to connect the server again. Open NetStream.cpp. Find Connect function and replace with this bool CNetworkStream::Connect(const CNetworkAddress& c_rkNetAddr, int limitSec) { Clear(); m_addr = c_rkNetAddr; m_sock = socket(AF_INET, SOCK_STREAM, 0); if (m_sock == INVALID_SOCKET) { Clear(); OnConnectFailure(); return false; } DWORD arg = 1; ioctlsocket(m_sock, FIONBIO, &arg); // Non-blocking mode if (connect(m_sock, reinterpret_cast<PSOCKADDR>(&m_addr), m_addr.GetSize()) == SOCKET_ERROR) { int error = WSAGetLastError(); // If something went wrong, the client will wait one second to connect the server again. // Of course, it will clear and setting up everything again. if (error != WSAEWOULDBLOCK) { Sleep(1000); Clear(); m_sock = socket(AF_INET, SOCK_STREAM, 0); if (m_sock == INVALID_SOCKET) { Clear(); OnConnectFailure(); return false; } ioctlsocket(m_sock, FIONBIO, &arg); if (connect(m_sock, reinterpret_cast<PSOCKADDR>(&m_addr), m_addr.GetSize()) == SOCKET_ERROR) { Tracen("error != WSAEWOULDBLOCK"); Clear(); OnConnectFailure(); return false; } } } m_connectLimitTime = time(NULL) + limitSec; return true; } Best Regards Ken
    1 point
  3. Violet Evergarden Also on netflix Trailer:
    1 point
  4. Fixed it myself, I had to upload the include folder to /usr/include. Well, after I compiled everything my server won't start... syslog says: SYSERR: Dec 16 19:28:02 :: Start: TABLE_POSTFIX not configured use default SYSERR: Dec 16 19:28:07 :: socket_connect: HOST localhost:15001, could not connect.
    1 point
  5. Hello, Today i installed freebsd, and i try to compile the db, but when i enter gmake clean, and gmake -j20 i get "gmake: g++: command not found", if i try to install gmake it says it is installed already, i``m using freebsd 11.1 amd64. How can i fix it to proceed with compiling
    0 points
×
×
  • Create New...

Important Information

Terms of Use / Privacy Policy / Guidelines / We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.