Tagged Questions

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.

learn more… | top users | synonyms

14
votes
4answers
3k 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 ...
12
votes
4answers
357 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. ...
11
votes
5answers
694 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.
10
votes
4answers
4k 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 ...
7
votes
2answers
113 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 ...
7
votes
6answers
7k 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 ...
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
5answers
7k 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 ...
5
votes
5answers
291 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
336 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
6answers
983 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
2answers
998 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
2answers
2k 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 ...
4
votes
2answers
189 views

Faster WinSock sendto()

I'm using Windows Server 2008, and my program is in C++. I'm using WinSock2 and sendto() in a while(true) loop to send my packets. Code like so: while(true) { if(c == snd->max) c = ...
4
votes
3answers
146 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 ...
4
votes
5answers
249 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
1answer
424 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 ...
4
votes
5answers
603 views

Winsock's connect() permanently returns WSAETIMEDOUT, but PuTTY connects on the same port

Probably the weirdest bug I've encountered so far. I need to connect to some 3rd-party application running under Windows XP Embedded. Network connectivity present and works: I'm able to connect to ...
4
votes
6answers
4k 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 ...
4
votes
2answers
2k 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 ...
4
votes
6answers
661 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
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
814 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 ...
4
votes
2answers
439 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. ...
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 ...
3
votes
2answers
121 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 ...
3
votes
1answer
104 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 ...
3
votes
2answers
100 views

When doing socket programming, what is the correct way to look up a domain name and then connect to it?

I've programmed networked applications, but primarily in Python. I'm writing a C++ application and I'm a little fuzzy on exactly what the syntax should be to look up a domain name and connect to it's ...
3
votes
1answer
643 views

VB6 winsock control: closing a connection and connecting to another server

I'm working on a legacy VB6 app. The app uses the RAS API to establish a modem connection, then uses a winsock control to connect to an IP address & port. I'm now adding a "failover" feature to ...
3
votes
5answers
349 views

Tracking down the source of handle leaks in WinSock MFC application

We are developing an application in which we are using a WinSock-based sime socket approach to communicate with an outside module. Our requirement is to make sure that the connection will always be ...
3
votes
5answers
405 views

UDP packets are dropped when its size is less than 12 byte in a certain PC. how do i figure it out the reason?

i've stuck in a problem that is never heard about before. i'm making an online game which uses UDP packets in a certain character action. after i developed the udp module, it seems to work fine. ...
3
votes
2answers
398 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 ...
3
votes
3answers
435 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 ...
3
votes
5answers
162 views

How can I perform network IO at the very end of a process' lifetime?

I'm developing a DLL in C++ which needs to write some data via a (previously established) TCP/IP connection using the write() call. To be precise, the DLL should send a little 'Process 12345 is ...
3
votes
1answer
279 views

copying sockaddr_storage to another sockaddr_storage changes address

Hey... As in a recent question (nobody did react on the last changes) I have a problem with assigning a sockaddr structure filled by recvfrom. As I have been advised , I did change my sockaddr to ...
3
votes
3answers
349 views

Why are there WSA pendants for socket(), connect(), send() and so on, but not for closesocket()?

I'm going to try to explain what I mean using a few examples: socket() -> WSASocket() connect() -> WSAConnect() send() -> WSASend() sendto() -> WSASendTo() recv() -> WSARecv() recvfrom() -> ...
3
votes
4answers
752 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 ...
3
votes
3answers
294 views

winsock compile error

The following errors are from a file with just windows and winsock2 included. C:\Users\ioil\Desktop\dm\bin>dmc sockit.c typedef struct fd_set { ^ ...
3
votes
3answers
1k views

SO_LINGER and closing sockets(WINSOCK)

hey. im writing a multithreaded winsock application and im having some issues with closing the sockets. first of all, is there a limit for a number of simultaneously open sockets? lets say like 32 ...
3
votes
2answers
760 views

C C++ - TCP Socket Class : Receive Problem

Hey, I did my own Socket class, to be able to send and receive HTTP requests. But I still got some problems. The following code (my receive function) is still buggy, and crashing sometimes. I tried ...
3
votes
3answers
913 views

Making (threaded) game server in C++/WinSock

I have a game I am working on in C++ and OpenGL. I have made a threaded server that right now accepts clients (the game) and receives messages from them. Right now the game only sends messages. I want ...
3
votes
2answers
812 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 ...
3
votes
2answers
2k 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 ...
3
votes
2answers
1k views

Winsock downloading files - vb6

I'm trying to use Winsock to download some files and save them. In my case, I have a MSHFlexGrid with 2 columns: one with URL and the other with the "path+filename" (where the file is going to be ...
3
votes
3answers
3k 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 ...
3
votes
4answers
12k 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 ...
3
votes
2answers
966 views

socket passing between processes

Is there a way to pass a socket between processes (not same address space) in Windows? I find this info Shared Sockets, therefore believe that it is possible. "The WSADuplicateSocket function is ...
3
votes
2answers
899 views

How to cope with high frequency data?

I have a C++ application which receives stock data and forward to another application via socket (acting as a server). Actually the WSASend function returns with error code 10055 after small seconds ...
3
votes
5answers
5k 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.
3
votes
1answer
790 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 ...

1 2 3 4 5 13