Tagged Questions
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 ...
3
votes
2answers
284 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) ...
2
votes
1answer
203 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
567 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
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
297 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 ...
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
104 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
3answers
139 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
2answers
232 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
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
4answers
653 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
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
548 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
881 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
3answers
365 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
4answers
872 views
Winsock2: How to allow ONLY one client connection at a time by using listen's backlog in VC++
I want to allow only one connection at a time from my TCP server. Can you please tell, how to use listen without backlog length of zero.
I m using the code(given below), but when i launch 2 client ...
1
vote
3answers
2k views
Calling WinSock functions using LoadLibrary and GetProcAddress
Basically I have a header file like this:
#if WIN32
typedef DWORD (WSAAPI *SocketStartup) (WORD wVersionRequested, LPWSADATA lpWSAData);
typedef SOCKET (WINAPI *MakeSocket)(IN int af, IN int type, ...
1
vote
3answers
835 views
linux to windows C++ byte array
I have to replicate the following Java functionality in C++ to get data from Linux to Windows. Is Winsock2 the best way to go?.
Also, any reference code to suggest?
TIA,
B
import ...
0
votes
2answers
76 views
WinSock2: handling accepted incoming connections in separate threads with recv and send
I am implementing a Windows-based web server handling multiple specific HTTP requests from clients using WinSock2. I have a class to start and stop my server. It looks something like this:
class ...
0
votes
1answer
84 views
Listening to a UDP broadcast
I need to listen to a network broadcast coming over UDP. The datagram contains a j4cDAC_broadcast struct. I have tried following a few tutorials, but they seem to have left a few things out and dont ...
0
votes
0answers
59 views
UDP server connecting and sending data weirdness
I am making async (well non-blocking rly) sockets lib for educational purposes. TCP part works just fine, but when it comes to UDP i experience weird behavior. Following code works as expected - ...
0
votes
3answers
257 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
0answers
183 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
111 views
Winsock 2.0 Will Not Connect to Public IP Address
So I am trying to build a simple text IM program to get into the wonderful world of networking. I have written 2 programs using Winsock 2.0 with C++: a server and a client. I have specified a UDP ...
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
1answer
176 views
Winsock's send() works oddly
I'm trying to write an experimental server program that accepts a connection and sends a message to the client. I got the client to connect, but I can't seem to send the message without doing really ...
0
votes
6answers
343 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
662 views
C++ Winsock Problem - accept()
I've started tying to learn Winsock with C++ and I'm having some problems.
I started by following the Winsock Example on MSDN ( a basic client-server ).
...
0
votes
1answer
119 views
Where I can learn from scratch about windows Winsock LSP
I found only bits of information and not so for the beginners.
I got the platform SDK example , I got the layered.zip from Microsoft , and got some article from the Microsoft web site (from 1999).
...
0
votes
2answers
195 views
Get formatted message for WSA error codes
i'm using winsock2 in a win32 c++ application. I would display with MessageBox the network errors that i can retrieve by calling WSAGetLastError(). How can i do this? I saw FormatMessage but i didn't ...
0
votes
1answer
766 views
Uploading PNG File (HTTP POST) with C++ Winsock API
I'm trying to upload a PNG file through Winsock2 HTTP Post. Here's my request string:
boundary = "-----rueldotme";
request += "POST " + ...
0
votes
2answers
137 views
How do I return a char from a function that uses winsock to recv from socket?
My application is crashing when I try printing the buffer. Otherwise, it works fine.
This is the code:
irc.h
class IRC
{
public:
void ...
0
votes
1answer
739 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
0answers
359 views
Performance difference between select() vs WSAEventSelect() vs WSAWaitForMultipleEvents()
I have an application that is using a cross platform library developed internally.
For various reasons I must stick with using this library under windows at least.
That library contains a socket ...
0
votes
1answer
117 views
MFC winsock1 and 2
I'm deep in trouble with my project.
I have to link two radar with my program, but the first has its own library that uses winsock, while in the second I want to use winsock2.
How can i do that?
At ...
0
votes
2answers
809 views
Bluetooth service problem
I need to create a custom bluetooth service and I have to develop it using c++. I read a lot of examples but I didn't success in publishing a new service with a custom UUID. I need to specify a UUID ...
0
votes
3answers
364 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
785 views
Winsock2 recv() hook into a remote process
I was trying to hook a custom recv() winsock2.0 method to a remote process, so that my function executes instead of the one in the process, i have been googling this and i found some really good ...
0
votes
3answers
206 views
Socket programming Xp > Vista, Vista > XP
I am developing a program which sends images from one computer to another (similar to remote assistance without mouse/keyboard input). The two computers I use to test this are one Windows XP machine ...
0
votes
2answers
1k views
C++ - Simple server which sends simple HTML to clients
Now, I'm just fooling around with this and I'm not sure as to why this isn't working.
#include <winsock2.h>
#include <ws2tcpip.h>
#include <iostream>
#include <cassert>
const ...
-3
votes
1answer
150 views
Chat Client Server across the network using Winsocket 2 and C++?
I am Developing a chat system that consists of multiple clients and a server.
The clients should discover the server by sending a broadcast message, which the server will respond to, sending back to ...