Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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. ...
6
votes
3answers
676 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
4answers
179 views

TCP Hole Punching

I'm trying to implement TCP hole punching with windows socket using mingw toolchain. I think the process is right but the hole doesn't seems to take. I used this as reference. A and B connect to the ...
4
votes
2answers
141 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
136 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
2answers
286 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
473 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 ...
3
votes
3answers
295 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 { ^ ...
2
votes
3answers
168 views

Best way to write a ftp client program to list files on the server?

I am trying to write a client-server program in C in windows. The objective is to receive the directory listing from the server. Now I was trying to develop the client-server in such a way to utilize ...
2
votes
1answer
206 views

How can I stop/restart listening and accepting on a server socket in Winsock2 C++?

I made a socket (Winsock2) in Visual Studio Pro C++ to listen on a port for connections (TCP). It works perfectly, but I let it run in its own thread, and I want to be able to shut it down with the ...
2
votes
2answers
228 views

Delphi wrappers for getnameinfo and getaddrinfo

I'm trying to find Delphi wrappers for getnameinfo and getaddrinfo socket APIs. Does anybody know where to find them or has created them and would not mind to share?
2
votes
1answer
62 views

Linux OSI equivalent to Winsock2's LSP

I'm looking for Linux's OSI equivalent to Windows' winsock2 LSP. In particular I would like to filter application layer protocols and traffic in linux. Any information would greatly be appreciated.
2
votes
2answers
578 views

WINSOCK - Setting a timeout for a connection attempt on a non existing IP?

I am developing a RTSP Source filter in C++, and I am using WINSOCK 2.0 - blocking socket. When I create a blocking socket, I set its SO_RCVTIMEO to 3 secs like so: int ReceiveTimeout = 3000; int e ...
2
votes
1answer
204 views

PChar Invalid Pointer Operation on StrPLCopy

I write some TCP-server usin WinSock 2 and I hava procedure which catch FD_READ event. In this procedure I need to parse recieved message. The code is here: procedure ...
2
votes
1answer
428 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
0answers
194 views

Communicating with a DLL

I have an LSP (Layered Service Provider) DLL, but once it's installed in the catalog, how to i communicate with it in my program? My LSP is based largely off of Microsoft's sample LSP. I was reading ...
2
votes
3answers
78 views

Concern over handling bad call to accept()

I'm writing a MUD server for personal learning purposes and I've, happily, managed to wrap up the socket stuff up into a couple of classes and everything appears to be working correctly; the server ...
2
votes
3answers
298 views

tokenizing a string of data into a vector of structs?

So I have the following string of data, which is being received through a TCP winsock connection, and would like to do an advanced tokenization, into a vector of structs, where each struct represents ...
2
votes
2answers
207 views

C++ Winsock 2 questions

I have read through the documentation for Winsock2 on MSDN, but I still need clarification on a few things, if anyone can help. I planned to make something like the the setup you get when you use ...
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 ...
2
votes
2answers
720 views

Is it possible to tell if WSAStartup has been called in a process?

I've started writing an ActiveX control that makes use of sockets. Applications that use this control may or may not also use sockets. Is it possible for my control to tell whether WSAStartup has ...
2
votes
4answers
1k views

Delphi TClientSocket replacement using winsock2 and IOCP?

Is there such a thing? It needs to be asynchronous (no Indy).
1
vote
1answer
64 views

Get Sender's IP Address using Overlapped IO

I know that WSARecvFrom has a parameter which is meant to return the sender's ip address. However, when I use it with overlapped io, the variable that I pass it doesn't get filled. ...
1
vote
2answers
105 views

Why wont a simple socket to the localhost connect?

I am following a tutorial that teaches me how to use win32 sockets(winsock2). I am attempting to create a simple socket that connects to the "localhost" but my program is failing when I attempt to ...
1
vote
1answer
16 views

Conceptual query with Getaddrinfo method

When using the getaddrinfo method, I'm providing an IP address and the port number. I'm getting a linked list in the out variable. It works fine. But I have a conceptual doubt here. When i am giving ...
1
vote
3answers
132 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
3answers
141 views

Send other data types in winsock2

The send function in winsock2 accepts only char pointers. How do I send integers or objects through it too?
1
vote
0answers
111 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
2answers
238 views

How can I get the connected host's IP address from a Windows Socket (C++)?

I've seen this asked before, but I never found an answer that worked. I need to get the explicit IP address (i.e. 123.456.789.100) and PORT number of the computer that my server is connected to in ...
1
vote
1answer
110 views

Using sockets winapi with Qt

I am using an API of communicating with remote server and it's only available in C. I cannot rewrite it, because it's a very specific protocol, and it'll take too much effort. The API providedIt uses ...
1
vote
1answer
64 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
121 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
1answer
70 views

Winsock2 data loss when in debugger

i am using Winsock2 in conjunction with overlapped I/O. This means i am calling WSARecv with a WSAOVERLAPPED structure and later i wait with WSAWaitForMultipleEvents for data. I made the strange ...
1
vote
2answers
245 views

GetMem for one PChar variable change content of other PChar variable

So, I have the folowing problem. I have 2 PChar variables. I allocate memory for first, do some operations, allocate memory for the second variable - and on this step the first variable contains bad ...
1
vote
4answers
667 views

File transfer using Sockets in C++

I wish to make a file transfer using sockets from client to server using C++ language... The code I have only transfers strings to client and server. How can I transfer files? Any help or reference ...
1
vote
1answer
386 views

Problem With Packet Delays on TCP/IP Windows 7 loopback adapter (or bug in software?)

We have a client and server application currently testing on the same Windows 7 64 bit machine. They're both written in C# and using P/Invoke to call out to the Winsock2 libraries. The application ...
1
vote
3answers
506 views

Why am I getting linker errors for ws2_32.dll in my C program?

I am writing my program in Visual Studio 2010. I am unable to link a file named ws2_32.dll with my project. Can anyone tell me how I can do that?
1
vote
1answer
220 views

WinSock2 on Windows XP and ICMPv6

I am trying to programatically send out ICMPv6 echo requests (ping6) using WinSock2. The ICMPv6 checksum is calculated based on the whole IPv6 packet that will be sent out. For that reason - from what ...
1
vote
2answers
435 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
3answers
494 views

Redirect IO of process to Windows socket

I am new to winsock, I tried to write a server socket that accepts new connection, then it calls an external executable file. How can we redirect the stdin and stdout of the external executable file ...
1
vote
2answers
164 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
551 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
415 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
2answers
889 views

Problem using Connect(), send(), recv, with UDP sockets

For my Uni assignment I have to create a fast action paced networked game and so have chosen to use UDP as opposed to TCP. I am aware of a lot of the differences in programming both UDP and TCP and ...
1
vote
1answer
61 views

Is there a simple way to convert a socket to an SSLified socket in C++?

In perl there are modules that you can pass a socket to and it'll return an SSL enabled socket. Is there something similar to that for C++ that I can use as a drop in replacement?
1
vote
1answer
304 views

Winsock IRC client connects but does not send data

I'm using the code posted on http://social.msdn.microsoft.com/Forums/en/vcgeneral/thread/126639f1-487d-4755-af1b-cfb8bb64bdf8 but it doesn't send data just like it says in the first post. How do I use ...
1
vote
3answers
366 views

Why does the following code make my computer beep?

I'm having a really hard time understanding why is this piece of code making my computer beep. I've isolated this section of code to be the one producing the occasional beep, but I don't see what's ...
1
vote
2answers
147 views

Is MFC supports winsock2?

I'm a fresher to Visual Studio. I read some where MFC supports only winsock1. Is it true that MFC doesnt support winsock2?
1
vote
2answers
609 views

Is there any delphi winsock2 library?

i need to use WSASocket function etc ...
1
vote
1answer
135 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 2 3