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.
18
votes
4answers
9k views
How to support both IPv4 and IPv6 connections
I'm currently working on a UDP socket application and I need to build in support so that IPV4 and IPV6 connections can send packets to a server.
I was hoping that someone could help me out and point ...
17
votes
5answers
1k views
Is sending data via UDP sockets on the same machine reliable?
If i use UDP sockets for interprocess communication, can i expect that all send data is received by the other process in the same order?
I know this is not true for UDP in general.
16
votes
4answers
5k views
Converting C++ TCP/IP applications from IPv4 to IPv6. Difficult? Worth the trouble?
Over the years I've developed a small mass of C++ server/client applications for Windows using WinSock (Routers, Web/Mail/FTP Servers, etc... etc...).
I’m starting to think more and more of creating ...
13
votes
4answers
696 views
Determine between socket and fd
On unix everything is a file approach of function read(), write(), close() is not supported on Win32.
I want to emulate it but have no idea how to distinguish when sock is socket or fd on WinSocks2.
...
10
votes
1answer
388 views
Get IP-Address from DNS without GetHostByName
I am using GetHostByName to get the IP-Address from a Host/DNS. I also have Kaspersky Internet Security 2013 and noticed that GetHostByName gets picked by it. It seems that that my process tries to ...
9
votes
2answers
595 views
Howto debug Winsock API calls?
I have a very large C++ server application on Windows (Win7). It compiles fine and runs mostly well, but sometimes IP connections fail.
My suspicion is that some calls to the Winsock API get bad ...
9
votes
1answer
955 views
GetQueuedCompletionStatus can't dequeue IO from IOCP if the thread which originally issued the IO is blocking in ReadFile under windows 8
My app stop working after switching to windows 8. I spend hours to debug the problem, found out IOCP behave differently between windows 8 and previous versions. I extract the necessary code to ...
8
votes
3answers
8k views
Bind to any port available
I need an app that sends an UDP packet to some network server and receives the response. The server replies to the same port number where request came from, so I first need to bind() my socket to any ...
7
votes
3answers
13k views
MinGW linker error: winsock
I am using MinGW compiler on Windows to compile my C++ application with sockets. My command for linking looks like:
g++.exe -Wall -Wno-long-long -pedantic -lwsock32 -o dist/Windows/piskvorky { there ...
7
votes
6answers
8k views
Winsock UDP packets being dropped?
We have a client/server communication system over UDP setup in windows. The problem we are facing is that when the throughput grows, packets are getting dropped. We suspect that this is due to the ...
7
votes
4answers
20k views
How to set up a Winsock UDP socket?
I want to create a Winsock UDP socket that only sends data to a client. I want the kernel to choose an available port for me. On the other hand, I want to indicate which local IP to use, since I'm ...
7
votes
5answers
8k views
Socket Exception: “There are no more endpoints available from the endpoint mapper”
I am using winsock and C++ to set up a server application. The problem I'm having is that the call to listen results in a first chance exception. I guess normally these can be ignored (?) but I've ...
7
votes
4answers
796 views
Sending emails using C
I have just started learning about socket programming and learned about winsock and achieved some progress. my question is basically: I want to send emails, what should I do?
points to be mentioned:
...
7
votes
6answers
12k views
What is a good tutorial/howto on .net / c# socket programming
I'm porting old VB6 code that uses the Winsock control to C#. I haven't done any socket programming and I wonder if anyone has a good reference/tutorial/howto that I can use to start getting up to ...
7
votes
1answer
184 views
Socket exception on Hyper-V machine
Recently, our entire QA environment moved from VMWare to Hyper-V virtual machines.
One of our applications sends UDP packets to a multicast cloud by a rate of 20K packets per second.
While that ...
6
votes
2answers
2k views
Rejecting a TCP connection before it's being accepted?
There are 3 different accept versions in winsock. Aside from the basic accept which is there for standard compliance, there's also AcceptEx which seems the most advanced version (due to it's ...
6
votes
1answer
2k views
How do web servers avoid TIME_WAIT?
I'm writing a simple HTTP server and learning about TIME_WAIT. How do real web servers in heavy environments handle requests from thousands of users without all the sockets getting stuck in TIME_WAIT ...
6
votes
2answers
593 views
C++ - Initializing SOCKADDR_IN
I am working through some Static Analysis defects and one that is causing me an issue is this one.
SOCKADDR_IN m_stLclAddr;
SOCKADDR_IN is a member of the WinSock API: ...
6
votes
4answers
1k views
Microsoft Patch 958369 MS08-070 broke my VB6 App (Type Mismatch - dynamically created control)
We upgraded our machines with a microsoft patch listed above and are now having issues with some winsock controls. While moving on to the new component library there were two issues that we faced:
...
6
votes
2answers
3k views
Difference between winsock and linux sockets
I'm developing an FTP-like program to download a large number of small files onto an Xbox 360 devkit (which uses Winsock), and porting it to Playstation3 (also a devkit, and uses linux AFAIK). The ...
5
votes
3answers
6k views
How can I check if a client disconnected through Winsock in C++?
How can I check if a client disconnected through Winsock in C++?
5
votes
2answers
228 views
Speed/Performance Characteristics of blocking vs Non-Blocking winsock
Is there in general a speed or performance difference in blocking and non-blocking Winsock TCP Sockets?
I could get the differences of both sockets but there isn't a detailed performance comparison ...
5
votes
6answers
499 views
Why does Windows not allow WinSock to be started while impersonating another user
Using my own program or others I can't get winsock to run when calling if the process is created with CreateProcessWithLogonW or CreateProcessAsUserW. It returns this error when I create the socket:
...
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 ...
5
votes
2answers
466 views
Is closesocket thread safe?
Is it safe if I want to call closesocket() on a server socket from 1 thread which is separate from another thread which runs the server using the same server socket?
5
votes
2answers
3k views
UDP multicast using winsock API differences between XP and Vista
It seems to be that the implementation required to set up a UDP multicast socket has changed between windows XP and windows vista. Specifically:
Under windows XP, you must call bind() before you can ...
5
votes
2answers
3k views
How do I use OpenSSL with WinSock?
I've scoured the web and have not found anything for this...
Does anyone have a simple code sample of using WinSock with OpenSSL? I am looking for a simple Visual C++ 2005 or greater code sample ...
5
votes
2answers
455 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
...
5
votes
5answers
1k views
Scanning LAN game servers using winsock
I'm trying to figure out how to use winsockets to be able to turn my game into a LAN-playable game. I've read some winsockets documentation but I can't figure out how a client can get all the games ...
5
votes
6answers
1k views
IO completion port key confusion
I'm writing an IO completion port based server (source code here) using the Windows DLL API in Python using the ctypes module. But this is a pretty direct usage of the API and this question is ...
5
votes
3answers
2k views
Windows networking using only Ethernet Frames
I'm doing a project where I must write a network library for a device connected to a Windows machine. The complication comes in that I may only communicate with the device using ethernet frames. So ...
5
votes
2answers
541 views
How to distinguish a Win32 socket handle from other pipe handles?
I need to determine whether a handle that my code did not create, for which GetFileType()==FILE_TYPE_PIPE, is a socket or not. There does not seem to be an API for this.
I have tried the following. ...
5
votes
2answers
1k views
Mixing File Handles and Sockets in Winsock
I'm porting some code from BSD sockets to Winsock, and I'm not sure how to handle the case below.
My original application runs a select on both stdin and the network socket:
FD_SET(sock, &fd);
...
5
votes
3answers
470 views
Is it possible to host a webserver in VBA?
I want to host a web server and want to use VBA to do it. Is this possible? I'm just doing this to prove someone wrong and really want to make this program.
So is it possible to make a really simple ...
5
votes
0answers
211 views
client server communication c++
I am trying the communication between a client and server in c++. so for just the communication i used the winsock . But i am not able to find any library in c++ by which i can implement something ...
4
votes
6answers
9k views
Delphi, How to get all local IPs?
Any one know a way in delphi get a simple list (eg tstrings) of the local ip address.
I have had a look at the other related question, and cant seem to get my head around converting them to delphi.
4
votes
4answers
794 views
Winsock C TCP Socket
I've worked with TCP sockets before in Python. It looks pretty similar in C but I can't get anything to work. socket(AF_INET, SOCK_STREAM, 0); returns -1, which of course indicates an error. How could ...
4
votes
3answers
2k views
substitute for fork()ing? in windows
I've been following Beej Networking guide and in the server section there is portion of code where it has called a function fork().
if (!fork()) { // this is the child process
...
4
votes
6answers
1k views
Winsock 2 portability
I'm about to develop some sockets related stuff in C++ and would like the software to be as portable between Windows and Linux as possible right from the start (making it portable later is tricky.)
...
4
votes
3answers
2k views
alternatives to winsock2 with example server source in c++
i'm using this example implementation found at http://tangentsoft.net/wskfaq/examples/basics/select-server.html
This is doing most of what I need, handles connections without blocking and does all ...
4
votes
5answers
472 views
TCP client message handling
I'm receiving a stream of bytes and i need to split out messages, for example
Message1\nMessage2\nMessage3\nMess
Each message will be appended by '\n' character but when a complete message cannot ...
4
votes
4answers
3k views
C++ Winsock API how to get connecting client IP before accepting the connection?
I am using the Winsock API (not CAsyncSocket) to make a socket that listens for incoming connections.
When somebody tries to connect, how can I get their IP address BEFORE accepting the connection? I ...
4
votes
3answers
1k views
Tiny C Compiler (TCC) and winsock?
Can I use a socket library from TCC? I can't find any reference to winsock or sys/socket.h in the include directory.
If i remember correctly, winsock was part of the windows platform SDK (?) If so ...
4
votes
4answers
2k views
Calculating socket upload speed
I'm wondering if anyone knows how to calculate the upload speed of a Berkeley socket in C++. My send call isn't blocking and takes 0.001 seconds to send 5 megabytes of data, but takes a while to recv ...
4
votes
2answers
1k views
Why should I use non-blocking or blocking sockets? [closed]
At first, I must ask that which is the best in which states ? For example a real-time MMORPG server. What if i create a thread per client instead of using non-blocking sockets ? Or What if i use one ...
4
votes
1answer
931 views
Game network code - Client side prediction & correction
I'm creating a 2d sidescroller mmorpg using winsock and c++ and I wanted to ask how to program client-side prediction & correction?
Well especially the correction, because prediction is basically ...
4
votes
2answers
976 views
Why does this SSL_pending call always return zero?
This code is for an HTTPS server using blocking sockets:
request := '';
start := gettickcount;
repeat
if SSL_pending(ssl) > 0 then
begin
bytesin := SSL_read(ssl, buffer, ...
4
votes
1answer
1k views
retrieving ip and port from a sockaddr_storage
I've got a sockaddr_storage containing the ipv4 address and port of a remote host. I haven't seen these structs before though and I'm not sure how to cast it into a struct where I can directly ...
4
votes
2answers
821 views
Pass socket handle from .NET to unmanaged child process
I currently have a .NET program initiating a connection to a server and starting another, unmanaged executable. The native process should take over the same socket (it is essential for the connection ...
4
votes
1answer
1k views
Why would recv fail when the requested buffer size is greater than the amount of data available?
Underlying the TCP transport stack are a number of buffer limits sometimes documented by their authors. On WinXP SP3 I've run into one of these, I think, and can't figure out why.
I have implemented ...

