Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
5answers
292 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
3answers
11k views

Hunt down java.net.SocketException: No buffer space available

Hi I have very ugly problem with: java.net.SocketException: No buffer space available (maximum connections reached?) It is client-server app. Client is Windows XP SP2 32b, with two net cards core ...
3
votes
2answers
274 views

Any gotchas moving TServerSocket app from D5 to D2007?

I've done a brief Google around and found nothing but I feel I ought to ask. I'm not really expecting there to be anything, but would rather ask a question with no answers now than ask the question ...
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
3answers
2k 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 ...
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
2answers
266 views

Socket transmit data but can't receive response

I am trying to implement UpNP in C++, I found a few sources on google but none worked. I found this one working (http://www.codeproject.com/KB/IP/upnplib.aspx) but it's for .NET, so I decided to sniff ...
1
vote
3answers
514 views

recv() until a NUL byte is received?

I'm trying to receive a single packet at a time from the server, since packets are going too fast, and each is of undefined size, calling recv() with number of bytes to read will read the first packet ...
1
vote
2answers
299 views

Overlapped WSARecv() Callback Not Being Called in MFC App

I have a COM component, implemented in C++ with ATL, that uses overlapped socket I/O. Right after the connection is made to the server, it starts an overlapped read on the socket, with code like ...
1
vote
1answer
263 views

extra newlines at end of file transported over tcp

I have two programs, recvfile.py and sendfile.cpp. They work except that I end up with a bunch of extra newline characters at the end of the new file. I don't know how the extra spaces get there. I ...
1
vote
3answers
1k views

Count the number of packets sent to a server from a client?

So I'm almost done an assignment involving Win32 programming and sockets, but I have to generate and analyze some statistics about the transfers. The only part I'm having trouble with is how to figure ...
0
votes
1answer
58 views

Winsocks 2 Asynchronous Problem

I am trying to use winsock2 in asynchronous mode. I am able to send messages from client to server, but not from server to client. When I call recv on client side, nothing is received in the buffer. ...
0
votes
1answer
36 views

Determining Packets Received with Winsock2

Is there a way to determine how many packets where received while using recv() with Winsock? I am looking for a solution to implement at the client, without special requirements on the server side ...
0
votes
1answer
17 views

About synchronous access in I/O Works in I/O Completion

Supposing there are 4 I/O workers in the use of I/O Completion Port corresponding to the number of processors, do they need synchronous access on client context among each other? The client context ...
0
votes
1answer
429 views

Using a TCP connection to GET data from a HTTP server, on rare occasion there's garbage data

I'm writing a networked game in C++ using Winsocks 2.2, using Visual Studio 2010, and decided it would be a good idea to use my web-server to store a list of active servers for the game. When a ...
0
votes
2answers
187 views

How to get the ip address under Windows

all i already had a "socketfd", and i was wondering how to use it to retrieve the local ip address. under linux, i can do something like this(not exactly correct): struct ifreq ifr; ...
0
votes
2answers
788 views

How to use data receive event in Socket class?

I have wrote a simple client that use TcpClient in dotnet to communicate. In order to wait for data messages from server i use a Read() thread that use blocking Read() call on socket. When i receive ...
0
votes
1answer
480 views

How to get domain name from Given IP in MFC (VC++)?

How to get domain name from Given IP in MFC (VC++) ? The code i am using is as below: #include "stdafx.h" #include <winsock2.h> #include <ws2tcpip.h> #include <stdio.h> // link ...
0
votes
2answers
278 views

Is there a wide character version of WSABUF structure in “Microsoft Visual Studio 8\VC\PlatformSDK\Include\WinSock2”

Is there a wide character version of WSABUF structure in winsock? I want to write Japanese data on the socket.
0
votes
2answers
1k views

I'm looking for syslog client source code

Does anyone have c++ source code to show how to send message to Syslog using winsock api.
0
votes
7answers
2k views

How to make an network-ip scan in c++?

I am experimenting with C++ winsockets. I want to create a method with which I can find the server on the network, without knowing it's IP. To do this I simply loop my connect method through IP ...