• SNBForums Code of Conduct

    SNBForums is a community for everyone, no matter what their level of experience.

    Please be tolerant and patient of others, especially newcomers. We are all here to share and learn!

    The rules are simple: Be patient, be nice, be helpful or be gone!

Recent content by Gbmsky

  1. Gbmsky

    Fast HTTP pixel image server for ad blocking

    Oh, yes, this is my code: SOCKET createConnectSocket(int port){ struct sockaddr_in sad; sad.sin_family = AF_INET; sad.sin_addr.s_addr = 0; addr.sin_port = htons(port); SOCKET sock = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP); if (bind(sock, (struct sockaddr *)&sad, sizeof(sad)) !=...
  2. Gbmsky

    Fast HTTP pixel image server for ad blocking

    Hi there, programming for an arm with an arm-brcm-linux-gnueabi-gcc.exe compiler I can't get the bind( ) function to work properly It keeps returning -1 With a similar code as yours. Any guess? ... Thanx in advance
Back
Top