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

2
votes
3answers
4k views

C++ Winsock P2P

Scenario Does anyone have any good examples of peer-to-peer (p2p) networking in C++ using Winsock? It's a requirement I have for a client who specifically needs to use this technology (god knows ...
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.
7
votes
6answers
11k 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 ...
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 ...
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 ...
3
votes
1answer
685 views

In Win32, is there a way to test if a socket is non-blocking?

In Win32, is there a way to test if a socket is non-blocking? Under POSIX systems, I'd do something like the following: int is_non_blocking(int sock_fd) { flags = fcntl(sock_fd, F_GETFL, 0); ...
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 ...
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++?
0
votes
2answers
376 views

Winsock recv not working after shutdown

I'm trying to get a simple winsock program working, so I create my socket and send my data just fine. Then I use shutdown(ConnectSocket, SD_SEND) which according to msdn, disables sending data, but ...
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 ...
3
votes
2answers
11k views

When binding a client TCP socket to a specific local port with Winsock, SO_REUSEADDR does not have any effect

I'm binding a client TCP socket to a specific local port. To handle the situation where the socket remains in TIME_WAIT state for some time, I use setsockopt() with SO_REUSEADDR on a socket. It works ...
3
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 ...
2
votes
1answer
329 views

Are TCP SOCKET handles inheritable?

On Windows, most sorts of handles can be inherited by child processes. The expectation is that TCP sockets can also be inherited. However, when certain Layered Service Providers are installed, this ...
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
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 ...
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 ...
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 ...
2
votes
2answers
2k views

Bitmap transfer using Winsock, GetDIBits and SetDiBits [closed]

I started working on something similar to a remote control application in c++. I wish to transfer a particular window's screenshot to another PC and display it in a window. Both GetDIBits and ...
2
votes
1answer
996 views

Check is socket is blocking (Winsock specific) [duplicate]

Possible Duplicate: In Win32, is there a way to test if a socket is non-blocking? This is how I set socket to non-blocking mode in windows. unsigned long mode = is_blocking ? 0 : 1; int ...
1
vote
2answers
423 views

Sending a Dynamic array (Inside a record) through Socket?

i'm trying to transfer a record from server to client, directly using .SendBuf(). however, this record has a member which is a dynamic array, and i have read somewhere (here in SOF) that when sending ...
0
votes
1answer
516 views

How to set time out for receiving message fromt client of server with non-blocking mode?

I have a server with 2 connections SOCKET which is connected with clients and I set this server is non-blocking mode which don't stop when sending or recieving message. I want to set time out for a ...
0
votes
3answers
2k views

C++ Winsock: recv() does not block

I have just compiled this code: http://www.win32developer.com/tutorial/winsock/winsock_tutorial_2.shtm I have added some codes so it does recv(), in an infinite loop. My problem, if there is no data ...
0
votes
1answer
425 views

Implement a good performing “to-send” queue with TCP

In order not to flood the remote endpoint my server app will have to implement a "to-send" queue of packets I wish to send. I use Windows Winsock, I/O Completion Ports. So, I know that when my code ...
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 ...
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 ...
3
votes
5answers
847 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. ...
2
votes
5answers
5k views

Examples for Winsock?

What do you guys recommend for a resource for winsock? I have an assignment that we have only have a few days to do that needs to send a simple packet using UDP (and receive the same type of packet). ...
9
votes
1answer
948 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 ...
3
votes
3answers
1k 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
2answers
8k views

C++ - Detours WinSock Hooking

What I am trying to do is use the Detours library to hook into an applications WinSock2 send() and recv() functions (a packet logger). While it does work for the send() function, it does not, ...
2
votes
1answer
3k views

Send UDP broadcast on Windows 7

I have a PC with two network cards connected to different networks (multi homed network setup). I want to send UDP broadcast frames on both networks. The senders IP address of the frames must be the ...
1
vote
2answers
246 views

Determine how many bytes can be sent with winsock (FIONWRITE)?

With select I can determine if any bytes can be received or sent without blocking. With this function I can determine how many bytes can be received: function BytesAvailable(S: TSocket): Integer; ...
1
vote
1answer
211 views

Can TCP SOCKET handles be set not inheritable?

Windows handles can be set to be either inheritable or not, to control whether child processes will receive them (when bInheritHandles in CreateProcess is TRUE). However, using SetHandleInformation to ...
1
vote
1answer
2k views

WSAEventSelect model

Hey I'm using the WSAEventSelect for event notifications of sockets. So far everything is cool and working like a charm, but there is one problem. The client is a .NET application and the server is ...
1
vote
1answer
1k views

PID from socket number on Windows?

I need to count amount of bytes sent and received from the network by various applications. First I thought about using LSP, but there is a lot of applications that do not use LSP at all (SMB for ...
0
votes
2answers
714 views

C++ Access violation reading why?

I'm developing the application, which will get mails from servers via pop/imap protocols using C++/Winsock. Cause, the code is large to paste here , I give you the link on pastebin: ...
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.
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: ...
4
votes
5answers
471 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
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 ...
3
votes
2answers
1k 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 ...
2
votes
4answers
2k views

ensuring packet order in UDP

hey. im using 2 computers with an application to send and recieve udp datagrams. there is no flow control (ICMP disabled) frequently when i send a file as udp datagrams via the application, i get 2 ...
2
votes
2answers
3k views

Ending “recv()” loop when all information is Read using Winsock

I am having an issue in my recv() loop for winsock. I am trying to terminate the loop when iResult==0, however, the loop only ends when the socket closes. It appears to be hanging at the very last ...
2
votes
2answers
2k views

talking between python tcp server and a c++ client

I am having an issue trying to communicate between a python TCP server and a c++ TCP client. After the first call, which works fine, the subsequent calls cause issues. As far as WinSock is ...
2
votes
1answer
799 views

send bitmap with winsock

How could you send a bitmap over winsock without saving it to a file then sending that? It would also be helpful if you knew how to convert the data after being recieved back into a bitmap.
1
vote
1answer
2k views

Upper limit to UDP performance on windows server 2008

It looks like from my testing I am hitting a performance wall on my 10gb network. I seem to be unable to read more than 180-200k packets per second. Looking at perfmon, or task manager I can receive ...
1
vote
2answers
1k views

Winsock accept timeout

Is it possible to set timeout to accept function when using blocking winsockets? Like we can do to recv and send function via setsockopt? Seems like it's not possible, but I want to ensure.
0
votes
2answers
588 views

Winsock bind() failing with WSAEADDRNOTAVAIL for directed broadcast address

I am setting up a UDP socket and trying to bind what should be a valid network broadcast address to it (192.168.202.255 : 23456), but bind fails with error 10049, WSAEADDRNOTAVAIL. If I use a ...
0
votes
3answers
181 views

Winsock - Why isn't ZNC (and IRC bouncer) accepting my winsock connection?

Using a typical irc client I can type in: /server localhost 6667 nick:pass When I enter the nick:pass I configured for ZNC,(an IRC bouncer) I'm forwarded to the server that znc is connected to ...

1 2