Tagged Questions
12
votes
4answers
371 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.
...
6
votes
3answers
710 views
Increase the TCP receive window for a specific socket
How to increase the TCP receive window for a specific socket?
- I know how to do so for all the sockets by setting the registry key TcpWindowSize,
but how do do that for a specific one?
According to ...
4
votes
2answers
142 views
C Sockets: Avoiding garbage when socket is closed
I'm programming a server and a client using non blocking sockets (fd_sets and select function) and once the server closes or shuts down a client socket, the client starts receiving a lot of garbage ...
3
votes
2answers
293 views
Socket recv call freezes thread for approx. 5 seconds
I've a client server architecture implemented in C++ with blocking sockets under Windows 7. Everything is running well up to a certain level of load. If there are a couple of clients (e.g. > 4) ...
3
votes
2answers
524 views
missing messages when reading with non-blocking udp
I have problem with missing messages when using nonblocking read in udp between two hosts. The sender is on linux and the reader is on winxp. This example in python shows the problem.
Here are three ...
2
votes
1answer
471 views
Sending data from Java to C using socket programming
i am making a program that sends a string from a Java client to a C server using WinSock2. I am using DataOutputStream to send the data through the socket.
The C server, acknowledges the bytes ...
2
votes
3answers
2k views
Winsock tcp/ip Socket listening but connection refused, race condition?
This involves two automated unit tests which each start up a tcp/ip server that creates a non-blocking socket then bind()s and listen()s in a loop on select() for a client that connects and downloads ...
1
vote
3answers
169 views
socket() return -1 but errno 0
I tried to create a UDP socket on mingw, but socket() return -1, with errno = 0. Strange.
I have included winsock2.h.
Initially I had compilation error "undefined reference to socket@12", after ...
1
vote
0answers
121 views
How to send Protocol Buffer object using Winsock2?
I am creating a client server app using a simple socket to transfer Protocol Buffer objects between C++ and Java. I have it created on the Java side both as the client and receiver. I even got the ...
1
vote
1answer
74 views
How to get socket information previously passed to a bind() call?
Winsock 2, windows xp sp3.
I have a socket, it was previously passed to the bind() function, now I want to get this information from the socket.
More specifically, I want the port number that the ...
1
vote
1answer
146 views
WSAPoll on named fd :: need suggestions how to rewrite it
I've some POSIXC code that I'm porting to windows (WinSocks 2.2) and I'm having problems with MS implementation of (not only) poll().
I have some experience with POSIX sockets, but I'm quite new to ...
1
vote
2answers
472 views
Handling asynchronous sockets in WinSock?
I'm using a message window and WSAAsyncSelect. How can I keep track of multiple sockets (the clients) with one message window?
1
vote
2answers
171 views
Socket not receiving from the client
int main()
{
CRc5 dec;
WSADATA wsaData;
int err;
if((err =WSAStartup(0x0002, &wsaData)) !=0)
{
printf("Init WSAStartup() failed[%d].", err);
return false;
}
...
1
vote
1answer
602 views
11001 returned on all calls to getaddrinfo()
Having an issue connecting to a device on my network. Whenever I call getaddrinfo() it returns 11001. I have checked this with numerous different IP's in the IP_ADDRESS string (Global Var). I've ...
1
vote
2answers
438 views
getting 10060 (Connection Timed Out) when stress testing simple tcp server
I have created simple tcp server - it works pretty well.
the problems starts when we switch to the stress tests -since our server should handle many concurrent open sockets - we have created a ...
1
vote
1answer
136 views
Is there any way to use getaddrinfo() and freeaddrinfo() and still be the program compatible with legacy versions of Windows?
in the Winsock2 library getaddrinfo() and freeaddrinfo() was only added in Windows XP and on. I know how to replace them in legacy systems, but a conditional use depending on the Windows version won't ...
1
vote
1answer
81 views
Is it possible to use connection proxies using sockets?
I need to connect to a server from an environment with a SSL proxy on, is it possible to handle that environment using just sockets? Is it was a no-SSL proxy, would that be possible?
Thank you very ...
0
votes
1answer
27 views
Partially allocating a buffer for recv
I need to write a windows sockets application for work, but having virtually no experience with network programming I'm in need of a little assistance.
I need to make several functions to make ...
0
votes
1answer
29 views
Sockets with IPv6
How to create and bind socket using winsock2, which will be receiving only packets which use ipv6 protocol.
Regards
0
votes
0answers
39 views
Sockets in as3 (ProgressEvent.SOCKET_DATA event not firing?)
My planned application has two parts:
A) A lightweight "communicator" written in C which runs on a Windows computer and reads data from a hardware device, then sends that data over a socket ...
0
votes
2answers
77 views
API using sockaddr_storage
I'm trying to do some IP agnostic coding and as suggested by various sources I tried to use sockaddr_storage. However all the API calls (getaddrinfo, getnameinfo) still depend on struct sockaddr. And ...
0
votes
1answer
152 views
C# wrapper for Winsock 2 DLL?
Now that Silverlight 5 (RC) supports P/Invoke, I am thinking of implementing a Socket class with server functionality, i.e. a class that implements the Bind, Listen, Accept methods, etc. With ...
0
votes
3answers
313 views
C++ , Send() function sends extra bytes
I am having trouble with a Winsock2 wrapper classes (client-server) and after countless hours of scratching-my-head-in-confusion, I decided it would be better if I asked your opinion.
To be more ...
0
votes
1answer
73 views
VC++ Winsock2 Error 10049. Trying to build IRC bot
I'm trying to port my IRC bot from Python to C++ and I'm running into some issues with Winsock2. I'm fairly new to sockets in C/C++ and most of this code was pieced together from various tutorials. I ...
0
votes
0answers
194 views
recvfrom() returns 0 after sendto() call on the blocking udp socket
When I call recvfrom() on the blocking udp socket after sendto() call it returns 0.
But when I call Sleep() function between them, recvfrom() returns the correct lenghth of the received udp packet.
...
0
votes
1answer
50 views
Advice about function calling conventions when using sockets
I plan to use sockets to make function calls between a client 32 bit application and a 64 bit application.
What would be the best scheme to call functions, pass variables and return parameters via ...
0
votes
1answer
212 views
WinSock2 send returns SOCKET_ERROR after 6 loops iterations… Why?
After 6 iterations, the send returns -1 aka SOCKET_ERROR. I tried adding a sleep function so it would wait a second before looping through again, but that made it so that it would only iterate 2 ...
0
votes
2answers
157 views
Multiple Socket client connecting to a server
I am designing an simulator application where the application launches multiple socket connection(around 1000 connections) to a server. I don't want to launch as many as threads to handle those ...
0
votes
6answers
356 views
Receiving all data sent with C sockets
If i write a server, how can I implement the receive function to get all the data sent by a specific client if I don't know how that client sends the data ?
I am using a TCP/IP protocol.
Thanks in ...
0
votes
1answer
813 views
client / server program in c++ problem
I have created a client and server program in c++ based i=on windows sockets.
I have some problem that when i execute the program no message appears on the server end and after that the program ...
0
votes
1answer
341 views
What to use instead of getaddrinfo() and freeaddrinfo() targetting legacy Windows?
By requirement, I'm targeting old legacy Windows systems (9x branch) where getaddrinfo() and freeaddrinfo() are not available.
What can I use instead of that? The code I'm using right now is ...
0
votes
3answers
371 views
Problem creating socket with C++ in winsock2
I'm having the weirdest problem causing me headaches. Consider the following code:
// Create and bind socket
std::map<Connection, bool> clients;
unsigned short port=6222;
struct sockaddr_in ...
0
votes
1answer
758 views
Bind Error 10038 with windows socket application in c
I am testing out a Socket Server application in c and I am getting an error on the bind function with code 10038. I looked this up and MSDN says it means:
An operation was attempted on something ...