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.
0
votes
2answers
10 views
htonl, ntohl, NBO client and server
I am writing server and client and i have some integers to pass.
In my server application i am recieving an integer from the client.
In the client do i call ntohl or htonl on the integer?
If i call ...
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++?
-1
votes
0answers
17 views
Resolving local network interface address for remote host [closed]
Say, I have multiple network interfaces (or one interface with multiple ip addresses in case of windows) on local host and I would like to get local interface IP address, which will be used for ...
0
votes
2answers
133 views
How do I detect when a user disconnects from the network? [duplicate]
Possible Duplicate:
Detect When Network Cable Unplugged
I would need some help to check if somebody disconnected. At the moment my code says that somebody disconnected every time I connect ...
0
votes
2answers
28 views
Why is the namelen-parameter in getpeername using a pointer in Winsock?
This is a question just for interest: why does the getpeername-function out of Winsock receives the namelen-parameter as pointer? In my opinion, this is a major design flaw.
Example:
sockaddr_in ...
2
votes
2answers
2k views
Boost::asio winsock and winsock 2 compatibility issue
My project uses windows.h in which winsock.h is used, and I need to include boost:assio which uses winsock2. So I get many errors that says Winsock.h already included.
I can define ...
0
votes
2answers
66 views
Array of sockets as a parameters in CreateThread
I have an exmaple wich describes how to send 1 socket as a parameter to the new thread.
SOCKET clientSocket;
...
CreateThread(NULL, NULL, SexToClient, &clientSocket, NULL, &thID);
...
0
votes
1answer
20 views
C++ Winsock 10093 error
I'm trying to build a server in c++ which can accept multiply number of clients. For that purpose I built a winsock wrapper and using threading with boost for communication for each clients.
I ...
1
vote
0answers
26 views
Error 6624 : A Winsock virtual circuit was reset remotely
We just installed a new Advantage Server 11.1 on Linux (before used on netware)
When I run a query with the SPACE command from a SQL openquery, I got this error:
Error 6624: A Winsock virtual ...
0
votes
3answers
32 views
Byte representation - Network raw data
I'm a little confused on the following network analogy:
Consider I'm serializing a structure (with integers) by passing a pointer to the Winsock send() function.
These 4byte integers on my Intel ...
1
vote
0answers
42 views
Winsock Connect function is taking too long when Windows firewall is on
I have made a client that, when the windows firewall is OFF on the server then it will connect instantly to the server but when the firewall is ON then it takes around 30-35 secs to connect with ...
1
vote
0answers
152 views
OpenSSL non-blocking sockets SSL_Read() still blocks
I have a client/server program written in C++ for windows which I nearly done integrating OpenSSL into.
I do want to state that I have looked over all the other posts similar to my own, and I have ...
-1
votes
1answer
17 views
Winsock closing after sending data?
After my winsock sends data, and the DataArrival event is triggered, right when I exit the sub the sock closes. Is the proper way to do sockets to open/close it like this every time? I figured I'd ...
0
votes
1answer
777 views
Sockets dont send all binary data
Actually i'm working on very simple ftp server.
Now i have problem with sending file (RETR in ftp protocol). I'm using sockets and binary mode in my client. Files with text sends perfectly but problem ...
0
votes
1answer
15 views
Creating winsock client through MFC doc/view architecture
I have a game TicTacToe which was created in MFC with document/view architecture and I have server (standart console application) witn winsockets. Where I should initialize socket in client to connect ...
6
votes
1answer
2k views
How do web servers avoid TIME_WAIT?
I'm writing a simple HTTP server and learning about TIME_WAIT. How do real web servers in heavy environments handle requests from thousands of users without all the sockets getting stuck in TIME_WAIT ...
0
votes
0answers
29 views
Windows Socket Programming -> Delay in messages getting transfered in some systems
I have a client-server model software which uses Windows sockets for communication. It works absolutely fine on most windows xp systems and windows 7 systems. But on some XP and 7 systems, there is ...
0
votes
2answers
45 views
Socket chat system - broadcasting them to all clients
Communication between a server and a clients works, but the server don't forward the client messages to the other connected client's, but only to the sender.
i want the server react to incoming ...
0
votes
1answer
30 views
Can't connect to remote ip
I'm trying to connect client with server. With local address (127.0.0.1) everything works perfectly fine, but when i try to use my remote address, it doesn't work. I search this thing all over the ...
0
votes
1answer
49 views
Concurrent Clients issue in C# Sockets
I am working on a client server application, Windows Server and Linux Client. I was testing my server with multiple concurrent clients. I tried just 20 concurrent connections from client, and i ...
0
votes
0answers
17 views
Sending Bitmap data over winsock? Winapi
I am tring to send a screenshot of a desktop over winsock.
As such, there are four tasks:
Save bitmap to buffer
Write data across wire using a socket
Read data from wire using a socket
Load a bitmap ...
0
votes
1answer
40 views
Can't connect to a port, but netstat shows what port LISTENING
While trying to connect get error:
"No connection could be made because the target machine actively refused it."
But netstat shows:
TCP 0.0.0.0:MY_PORT MY_PC:0 LISTENING
...
0
votes
2answers
374 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 ...
0
votes
0answers
23 views
android python errno 10053
I am trying to learn creating the android application using python. I am going through the tutorials.
when I am running the command :
adb forward tcp:9999 tcp:4321
set AP_PORT=9999
and then ...
3
votes
1answer
85 views
Linux and Windows socket APIs
I want to port some Linux-specific code to Windows which contains socket operations. Is there any third party library available for Linux/BSD sockets to Winsock mapping like the pthread-w32 library, ...
1
vote
1answer
75 views
Weird multithreading behavior in C#
I have a listener thread function, which waits for incoming connection and starts a new thread for every client. Also it writes "1" to log every time when it starts a new thread:
void ...
2
votes
1answer
60 views
how to replace WSAStartup( MAKEWORD(2, 2), &data ); with boost:asio?
I have native dll project which I use from C# via CLI wrapper. In Initialize method of dll i'm calling
WSAStartup(MAKEWORD(2, 2), &data);
This works fine.
Now I"ve decided to move entire dll to ...
0
votes
0answers
57 views
GetAddrInfoW does not return IPv6 addresses?
When I use nslookup for "google.com" I get the following:
Addresses: 2607:f8b0:400a:801::1001
173.194.33.32
173.194.33.36
173.194.33.34
173.194.33.37
...
-2
votes
0answers
29 views
Error sending data on socket in c# [closed]
I have this piece of code:
byte[] request = new byte[257];
int nIndex;
nIndex = 0;
request[nIndex++] = 5;
request[nIndex++] = 1;
request[nIndex++] = 0;
GCHandle pinnedArray = GCHandle.Alloc(request, ...
0
votes
2answers
82 views
How can I send all data over a socket? The method I am currently using causes problems
I am trying to send large amounts of data over a socket, sometimes when I call send (on windows) it won't send all the data I requested, as expected. So, I wrote a little function that should have ...
0
votes
1answer
25 views
IntelliSense: no instance of constructor “Sock::Connection::Connection” matches the argument list C++
I have this weird problem and I have no idea whats going on.. It won't let me create a class in VC++2012. I get this error: IntelliSense: no instance of constructor "Sock::Connection::Connection" ...
0
votes
0answers
31 views
Unknown type WSAData
I am using Code::Blocks to write C code for socket programming on windows7. I am not able to compile my code successfully and get errors like "unknown type WSAData", "undefined reference to ...
0
votes
1answer
30 views
Characters are appended while reading from a file and sending data to server
I am reading data from a file and sending this to server using windows sockets. Following is the code:
//Socket creation and setup code
long Begin;
long End;
char * block;
ifstream myfile;
...
2
votes
0answers
60 views
Determine if a computer is connected to the internet
I need to determine in a c++ program whether a Windows computer connected to internet. For Vista and above, there is IsInternetConnected() function, it works as expected. For XP, it should be possible ...
2
votes
3answers
72 views
C++ winsock connection refused when connecting to IPv4 address
I'm programming a server/client system using winsock2 and it works great when I connect the client to the server name or the server IPv6 address. However, when I use the server IPv4 address I get ...
0
votes
1answer
46 views
A way to identify a socket in OnClientConnect event?
I have a client, and i want the server to (from advanced) identify him in the OnClientConnect event, is it possible ?
do i need to do something in the OnConnect event of TClientSocket ?
for example, ...
0
votes
1answer
102 views
Winsock not sending in a while loop
I am very new to networking and have an issue with sending messages during a while loop.
To my knowledge I should do something along the lines of this:
Create Socket()
Connect()
While
Do logic
...
0
votes
1answer
104 views
Sending IP address through socket in C
I currently have a working client (written in C++) and a working server (written in C). I'm currently trying to figure out how to send to the client from the server a message that says "Hello, ...
0
votes
1answer
152 views
Winsock send recv buffer size
I'm writing a MFC app to implement a client/server scenario and using Win socket for that. I can send/receive a small message e.g. "hello". Also, I tried with buffer of size 1000. However, when I ...
1
vote
1answer
72 views
How to initialize the Windows socket library without admin rights
I'm writing a program that calls the OpenOffice.org API through .NET. The documentation at http://wiki.openoffice.org/wiki/Documentation/DevGuide/ProUNO/CLI/Writing_Client_Programs says:
For OOo 3.x ...
0
votes
2answers
24 views
library using winsocks: unresolved external symbol
I created a library which makes use of winsocks, I compile it with following commands:
cl /c myLib.c /link ws2_32.lib
lib myLib.obj
thus obtaining myLib.lib, everything's ok.
Now, I wrote a test ...
0
votes
1answer
142 views
Client unable to receive messages from BROADCAST UDP Server. (Winsock)
I have developed a client server UDP application. The Server UDP socket is set to be a BROADCAST UDP Socket. The code of both sides does not generate any error, but the message sent from BROADCAST UDP ...
1
vote
1answer
118 views
Does using tcp guarantee it will be sent/received?
I've been working on a simple winsock file transfer for a friend and me to share files without needing to upload to mediafire everytime.But a problem I have ran into is/was(depending on how you see my ...
-5
votes
0answers
43 views
winsock client and server [closed]
I am completely new to winsock and I am looking for a way to merge client and server functionalities together. At the moment I got two applications, one is set to receive incoming connections (server) ...
0
votes
1answer
129 views
C++ Winsock recv() buffer junk
I'm writing a console appication in cpp that sends control commands from a file via TCP to a host machine and receives a response.
All those informations are shown on screen and logged to a file and ...
0
votes
1answer
49 views
Unable to set WSPStartup as a dll export
I am trying to write a LSP for winsock and as per MSDN documentation the dll is supposed to export a single function viz. WSPStartup() as defined in Ws2spi.h
While compiling I get an error:
error ...
1
vote
2answers
48 views
Accept connections only from specific subnet
Using winsock I want my server app to accept connections only from a certain (let's say 192.168.0.0/24) subnetwork.
I am thinking of two options:
Check client's address every time I accept a ...
-2
votes
1answer
134 views
Chat client in C windows programming [closed]
in this source i can just send one message but i want to send more messages.
how can i fix this problem
please first run the server and then client
then you see you can just send one message
i want to ...
1
vote
1answer
67 views
clean window socket internal buffer
I am wondering if there is a way to clean up window socket internal buffer, because what I want to achieve is this
while(1){
for(i=0;i<10;i++){
sendto(...) //send 10 UDP datagrams
}
...
1
vote
2answers
65 views
accept() functions is acting as non-blocking
I am writing a server program using Winsock that waits for the client connection. The code is like this:
#include <winsock.h>
#pragma comment(lib, "wsock32.lib")
WSADATA wsaData;
...

