In computing, the Windows Sockets API (WSA), which was later shortened to Winsock, is a technical specification that defines how Windows network software should access network services, especially TCP/IP.
0
votes
1answer
15 views
Getting undeclared Identifier errors in Winsock.h
I am trying to compile a code with socket Programming in it.
#include <RTPParser.h>
#include "MMThread.h"
#include "MMSignal.h"
#include "MMTimer.h"
#include "MMDebugMsg.h"
#include ...
0
votes
1answer
11 views
vb6 - sending message into winsock server chat
I've a simple winsock server chat and this is the code:
Private Sub Form_Load()
Winsock1.LocalPort = 5100
Winsock1.Listen
End Sub
Private Sub Winsock1_ConnectionRequest(ByVal requestID As Long)
...
6
votes
0answers
227 views
Middleware in client/server communication
I'm building a client/server pair in C++, and I've used the winsock for the communication. However, I'm not able to find any library in C++ by which I can implement something that, instead of sending ...
0
votes
0answers
36 views
Running a binary written in codeblocks through console returns -1
I'm trying to write an application using sockets. I wrote a base. When running through codeblocks it works fine, but when executing through the console ('./seabattle') it only shows the first ...
0
votes
0answers
9 views
LNK2019 :unresolved external symbol
I'm building a simple windows socket program in VC++ 2010 .
I'm getting an error
'LMSVCRTD.lib(crtexew.obj) : error LNK2019: unresolved external symbol WinMain@16 referenced in function ...
0
votes
1answer
20 views
Winsock network c++
I want to learn winsock network programming in C or C++ . but I don't know
which tutorial to learn .
I've found this tutorial http://beej.us/guide/bgnet/output/html/singlepage/bgnet.html but the ...
0
votes
3answers
327 views
C Network Programming - Winsock
I have been learning C over the last two weeks, managed to get my head around pointers, arrays and structures.
I am looking to do a bit of socket programming on windows and was wondering if anyone ...
0
votes
1answer
48 views
C++: Windows Socket Error 10013
All of a sudden, my PC has stopped letting me bind to sockets. It was working last night, and when I went to test a feature after a few hours of coding, nothing would bind.
Other facts:
The same ...
1
vote
1answer
268 views
WSACONNREFUSED when connecting to server
I'm currently working on a server. I know that the client side is working (I can connect to www.google.com on port 80, for example), but the server is not functioning correctly. The socket has ...
0
votes
0answers
13 views
iOS - Communicate from iOS to VB server that uses winsock
How can I communicate from iOS to a VB Server that uses winsock?
I tried the CocoaAsyncSocket class but it don't work.
Thanks
0
votes
1answer
13 views
How to distinguish which operation was completed in IOCP processing thread?
My application can simultaneously send and receive data from the client using WSASend and WSARecv. So, How can distinguish which operation was completed in IOCP processing thread (send or receive)?
...
0
votes
1answer
19 views
Do I need to close a socket?
After sending data over a socket with Winsock, you're supposed to close the connection like this:
closesocket(ConnectSocket);
WSACleanup();
I'm writing an API that sends data over a socket. If I ...
0
votes
1answer
44 views
c++ project wont connect to socket with error 10093
Why can't this program connect to the socket?
I know that wsastartup fails, but I can't figure out how to use it.
#include "StdAfx.h"
#include <iostream>
#include <stdio.h>
#include ...
2
votes
0answers
195 views
How to detect IPV6 address change in Delphi 7?
I was looking for a way to detect the IPV6 address change using delphi 7 on Windows XP and above. For vista , there is a windows API i know. I came across code that claimed to do the same on XP as ...
1
vote
1answer
30 views
Winsock - Non-blocking socket: send returning 10035
From what I've read up about it, it means that the send buffer is full for the time being and you should try sending again later. That's where my problem comes in, how would such a wait function look ...
0
votes
0answers
25 views
creating an irc bot using winsocks in c++
I guess I can't be as specific as one would want when asking a question here but I'll try to explain. I have no background in programming much outside general school console projects. I wanted to take ...
0
votes
2answers
38 views
trying to broadcast through udp socket
I've bumped into a problem with my broadcasting server. basically, I want it to send broadcasts continuously from the moment I launch it. for some reason it will not start until it receives a ...
1
vote
1answer
43 views
C++ multithreaded server with winsock and std::thread
I have some problem with including thread module, when I add:
#include <thread>
the call to the bind function gives me error:
Error 3 error C2440: '=' : cannot convert from ...
0
votes
0answers
93 views
WSARecvFrom hook: lpOverlapped not unique?
I've been trying to intercept UDP packets before they reach an applications logic. More precisely, that application is using a DirectPlay Server and there is no source.
So I found out that DirectPlay ...
7
votes
3answers
474 views
Memory Leak GETIPFROMHOST
I have this code right here to retrive the IP-address from a hostname:
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils,
winsock;
function GetIPFromHost(const HostName: string): string;
type
...
0
votes
1answer
52 views
C/C++ Winsock UDP - sendto() on client causes memory leak
I am writing a network game in C++ using Winsock UDP sockets and I have a problem that every time sendto() is called, it increases memory usage in irreversible way. The strangest thing is that appears ...
0
votes
1answer
39 views
How to wait for entire buffer to arrive in a SSL connection
I am implementing a client server program, in which the client sends HTTP messages to the server. It can be both HTTP or HTTPS
In case of large messages, like file transfer using HTTP, the client ...
1
vote
1answer
44 views
Simple winsock server acting unreliablely
I have the following simple winsock server written in plain C:
#include <windows.h>
#include <winsock.h>
#include <stdio.h>
#define NETWORK_ERROR -1
#define NETWORK_OK 0
int ...
0
votes
1answer
54 views
Intercepting / Redirecting outgoing http connections on windows
i am looking to redirect outgoing http connections (which do not use the system proxy) on a windows machine.
Background:
I have some legacy software that interacts with a now defunct web service. I ...
0
votes
1answer
43 views
writing proper “HEAD” and “GET” request in winsock c++
Actually I was coding for downloading the files in HTTP using winsock c++ and to get the details I fired "HEAD" header..
(this is what actually I did)
HEAD ...
0
votes
3answers
86 views
Winsock; coalescing send calls
I'm developing a server which involves a lot of broadcasting of identical data to multiple clients over TCP.
Something like:
for(i = 0; i < n; i++)
{
send(client[i], buffer, ...);
}
Is ...
1
vote
0answers
85 views
VB6 Winsock versus C# TcpListener
I have written quite a few "listeners" in .NET (C#), specifically using the TcpListener class. I have used both the AcceptTcpClient and AcceptSocket methods when a client connects, and thus far have ...
1
vote
2answers
51 views
winsock connect() error 10051
I get an 10051 socket error every time i try to use this code:
USES_CONVERSION;
LPTSTR addr = A2W("192.168.1.209");
m_pSMACLPRCli = new CSMACLPRCli(addr, 12010, m_hWnd);
...
3
votes
0answers
85 views
VB6 app sending UDP broadcast messages via winsock - only every second message is sent
I have a VB6 appl in which I have a function where I send out messages (to trace what the appl is doing) by sending UDP broadcast messages (either to 255.255.255.255 or the subnet's broadcast addr ...
0
votes
1answer
31 views
IMAP-Can not view contents in outlook
i have implemented an IMAP client (using winsock and openssl) that can fetch emails from my GMail account and save each individual email as .eml file. However, i was not able to view the content using ...
2
votes
1answer
43 views
Windows socket write() is blocked by a read() unexpectedly
(this is an updated repost of a previously asked question, posted with old account which I've lost the credentials for)
I'm writing a client-server program, where the client is C++/winapi and the ...
2
votes
1answer
56 views
How can i tell the client to wait until it received all the data?
this is my first post. i am currently taking a networking class and i am required to write a client program that can download all emails from imap.gmail.com:993 to text files. i am required to write ...
0
votes
1answer
41 views
Sockets will just die and not reconnect after some time
I wrote this module for a chat room, and whenever the socket dies it should try to reconnect. However, I've noticed that after around 10 or 15 minutes, the socket will stop trying to reconnect. Why ...
1
vote
1answer
58 views
How to read and Send CR/LF “x0D x0A” in binary mode
I am reading a PDF File by opening it in a binary format binary format. I have to send each and every byte to the server via sockets. I am using winsock for this purpose. Following is the code where I ...
5
votes
1answer
110 views
TStringStream gets corrupted when received using (winsock's) recv?
I'm working on a fairly simple Client/Server application and have some trouble receiving a TStringStream from a client using recv provided by winsock API.
I keep getting this error: 'access violation ...
1
vote
2answers
198 views
Where does winsock store ip address of a socket?
Suppose I have a simple winsock server that has a listening socket, and then when a connection is accepted, it stores the socket in an array of sockets (to allow multiple connections).
How can I get ...
0
votes
1answer
64 views
multicast sent message cannot be received by computers in one network
I'm sorry if this is not an useful question. I'm new to socket programming. And I have to build a multicast application(with receiver and sender) that simply send a message to a group of hosts in one ...
1
vote
0answers
43 views
WinSock: how to change TCP Acknowledge Frequency programmatically
The Windows registry has a key TcpAckFrequency (default 2), which sets the number of TCP packets received before sending back an ACK packet. Also, there is a TcpDelAckTicks key defining the delay ...
0
votes
2answers
47 views
Error while reading the file and sending via sockets
I am reading a file and transferring it to a server in C++. Following is the main part of my code:
Client:
long Begin;
long End;
char * block;
//Open the file for reading
ifstream myfile;
...
0
votes
1answer
39 views
Why my threaded winsock server won't crash?
I have implemented a c++ winsock (win 32) with intention of crashing using an strcpy command. The socket itself is instantiated inside a thread. However, when I put the strcpy inside the recv loop, ...
5
votes
2answers
2k views
How do I retrieve an error string from WSAGetLastError()?
I'm porting some sockets code from Linux to Windows.
In Linux, I could use strerror() to convert an errno code into a human-readable string.
MSDN documentation shows equivalent strings for each ...
0
votes
0answers
9 views
CAsyncSocket::SendTo function failing only in Win32 bit release mode
I have a vc++ application which sends a socket message to a port through CAsyncSocket::SendTo API. It works fine in both Win32 Release and Debug mode when run in Windows server 2003.
However when i ...
0
votes
2answers
34 views
How to get the connected client's ip using WINSOCK2 and C?
my question looks clear, i want to get the IP address of the client who's just connected into my winsock2 running server, i'm using C.
Thanks in advanced!
0
votes
2answers
54 views
Windows socket errorcode 10055
I've developed an app that uses sockets over windows. It works perfectly but after some time, the internet connection begin to fail and finally I get this error (10055), which means that my app run ...
0
votes
0answers
13 views
Server & client messenger using winsock in c++ without threads
currently I have a server and a client console application in c++ using winsock. In my situation the client is able to send a message to the server, which listens and it can aswer, but I need to make ...
0
votes
2answers
39 views
FD_READ: recv() returning two packets at once
I'm using winsock in my application to mantain client-server connection, and using non-blocking sockets in order to do that. But sometimes when I get FD_READ message, it appears that recv() returns ...
0
votes
0answers
129 views
boost::asio read on socket to server blocks all incoming connection on client socket to be accepted
I'm quite new to boost::asio, currently writing http proxy (at the moment testing on Windows 7, boost 1.52.0 ). I faced behavior I don't really understand could you please help me with it.
I'm using ...
1
vote
1answer
78 views
what happens if tried to close an already closed socket winsock? [duplicate]
What will happen if i call closesocket(m_socket) two times?
After first call the socket will get closed.
Whether after second call something will happen that is not good for the program or ...
0
votes
0answers
28 views
BluetoothFindFirstDevice not returning device name every time
I've been having a small, but annoying little error.
I'm using this piece of code to look for Bluetooth devices.
#include <stdlib.h>
#include <stdio.h>
// Link to ws2_32.lib
#include ...
0
votes
3answers
35 views
htonl, ntohl, NBO client and server
I am writing server and client and i have some integers to pass.
In my server application i am recieving an integer from the client.
In the client do i call ntohl or htonl on the integer?
If i call ...






