Tagged Questions
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
31 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 ...
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 ...
0
votes
1answer
34 views
How to link an archive without depending on an IDE?
I've been using a TCP sockets tutorial for C++, and came across the following line -
Before we begin, you will need to include winsock.h and link libws2_32.a to your project in order to use the ...
1
vote
1answer
363 views
Communication between two windows created using TCP Sockets (WIN32 API)
I want to Create two windows using WINAPI and then I want to communicate between them using TCP scokets.
so far i have successfully created two windows and have successfully opened the sockets as ...
0
votes
3answers
688 views
Send Simple Message Over LAN To All Network Computers in VB.NET (Not Pre-Specified IP Address)
I have a complicated app, so for the purpose of getting the information I need, I'll create a simple example of what I'm looking for...
I just need to send a simple message to All computers on the ...
0
votes
0answers
95 views
Easy way to change tcp packet header in compiled executable?
I have executable (written probably in c++), which is connecting to the serverside software using tcp and windows sockets (win sock api).
Then it sends packet with header (for example header is two ...
-2
votes
1answer
61 views
Different behavior in connecting to port 0 in windows 2008 32/64 bit [closed]
When I run the below code in windows 2008 32 bit server, program flow goes to sckTest_Error() when connect() is called.
But when I run the same code in windows 2008 64 bit server, RTE occurs and ...
1
vote
2answers
96 views
How to detect the other side has called shutdown() on a TCP socket?
Say, a tcp client has connected to a tcp server on socket s. Next, the client call shutdown(s); then how should the server detect that the client has did that operation?
PS: I have known the server ...
1
vote
2answers
129 views
Can I bind an arbitrary source IP to a socket?
I have a TCP server running in an infinite loop like the following psuedo-code:
while (true)
{
auto new_connected_socket = accept(listening_socket,...);
// Here it may block for a long time
...
1
vote
1answer
75 views
What if lpCompletionRoutine of WSASend is specified in IOCP model?
The MSDN page for WriteFileEx says that it can not be used in IOCP model because it has an argument to specify the completion routine. If the file handle has been associated with an I/O completion ...
0
votes
3answers
104 views
send() not deliver all bytes?
Why doesn't send() in winsock guarantee delivery of the all bytes you request?
This is TCP and it's blocking sockets.
Similarly, this happens when non-blocking. How can you guarantee that you send ...
1
vote
2answers
338 views
WinSock.h & WinSock2.h which to use?
Does anyone know the differences between WinSock.h and WinSock2.h . I know they don't use the same library (.lib) but I don't know if WinSock2 only adds new features or if it also improves WinSock 1 ...
5
votes
2answers
226 views
Speed/Performance Characteristics of blocking vs Non-Blocking winsock
Is there in general a speed or performance difference in blocking and non-blocking Winsock TCP Sockets?
I could get the differences of both sockets but there isn't a detailed performance comparison ...
0
votes
3answers
124 views
Reading data from socket after it's closed
Using Visual basic 6.0, I'm making a Winsock HTTP connection to a webserver, that sends data and closes right after. (Connection: keep-alive, doesn't do any good with this server)
Here's a piece of ...
0
votes
2answers
134 views
Strange behaviour with TCP sockets in thread
We have an application where we send data through TCP sockets. We use 8 TCP connections for this. The socket send and receive is called in a background thread. There is just one thread which iterates ...
0
votes
1answer
269 views
Windows TCP keepalive sending 1 byte messages with no PSH [closed]
I have a traffic capture from what I believe is a windows client. I've noticed that from time to time it sends what are identified by Wireshark as "TCP Keep-Alive", but instead of just setting ACK ...
1
vote
2answers
275 views
C++ TCP Winsock Server receiving the same packet many times
I have written a very simple C++ server which I am connecting to from a Java application. The C++ server uses winsock2. I am sending UTF8 encoded numbers to the server from my client and on receipt ...
0
votes
2answers
2k views
Server/Client TCP asynchronous (winsock) // FD_WRITE issue
I need your help because I have to make two console application in C++ : a client able to send as many string as possible to a server (in order to send coordinates). I succeeded to make a blocking ...
0
votes
1answer
37 views
why TCP state remain establish for a while after disable network card
I am testing a networking application, I notice that after I disable the network card, when I netstat -an, I can still see the TCP state still be Establish for a while. I would like to know that why ...
0
votes
1answer
276 views
Setting up the source Port/IP on an TCP/IP connection
I have setup a TCP/IP client/server connection that will open and close the connection every time a request is exchaged. It works perfectly; the client app opens the connection, sends the request and ...
1
vote
1answer
276 views
C++ Winsock Server with Multiple Clients?
I have written a program that talks to a Bittorrent tracker via a TCP connection. I want to expand it's functionality to talk to multiple trackers at the same time via winsock in C++.
Do I need to ...
0
votes
1answer
47 views
Sending/Receiving an HMODULE with Winsock
I'm working with a C++ project where two processes (running on the same machine) are communicating with each other via TCP, using WinSock. The process 'A' loads several Dll's which must be used by ...
2
votes
1answer
1k views
C++ HTTP GET request problems?
I have written a program that sends a tcp request to a web address specified in the command line and prints the response. When I send thisget request to www.google.co.uk (or any website) I get nothing ...
1
vote
1answer
352 views
Winsock: strange conflict with SO_REUSEADDR
I have faced with a strange behavior.
The manual claimed: "When two sockets are bound to the same port number but on different explicit interfaces, there is no conflict". Why the system fails in the ...
0
votes
2answers
90 views
How to difference sockaddr_in struct from same subnetwork and different IP/users
I am developing a gaming server using the Winsock2 API from Windows, just for now until porting it to Linux.
The main problem I have found is that I don't know how to differentiate gaming clients ...
1
vote
2answers
463 views
How to explain this incredibly slow socket connection?
I was trying to set up a bandwidth test between two PCs, with only a switch between them. All network hardware is gigabit. One one machine I put a program to open a socket, listen for connections, ...
0
votes
1answer
188 views
How to reduce the number of TCP ACK's during a highly reliable bulk transfer
I've got an application where two computers are in very close distance - typically within a few feet of one another.
I've got a TCP connection between applications on the two computers. The server ...
0
votes
1answer
110 views
Not able to receive data from server
i am streaming an transport stream file from live media server through http,but when i try to receive the data from my code of client i am able to connect at specific url but could not receive ...
2
votes
3answers
106 views
Using WinSocks in C to send data to a c# application on same machine, "target host refusing connectiong(c# part)
I am trying to get data from my interface, written in c, to another application, in c#.
Now, I'm not sure if WinSocks is pure c, but I'm using visual studio and the rest of my interface is 100% pure ...
2
votes
1answer
190 views
Accepting TCP Connections from Exactly 2 IP Addresses
I am writing a TCP server application using Winsock. The client that connects to me (for which I have no source and therefore cannot make changes) behaves as follows: If it connects and I close the ...
0
votes
1answer
233 views
TCP three way handshake fails
I have a C++ application which accepts TCP connections and then reads the traffic sent to it. It has worked very well until I moved it to a new machine. It seems like winsock never accepts the ...
1
vote
1answer
493 views
IP Address when Multiple NICs are Involved
I am writing a TCP server application using Winsock. The machine on which my server will run and the machine on which the client will run both have 2 NICs. The IP addresses involved are:
Server NIC ...
0
votes
1answer
41 views
Connecting to a computer remotely
I found a tutorial that shows you how to create server and client programs, and make them communicate over a network.
http://www.win32developer.com/tutorial/winsock/winsock_tutorial_1.shtm
I can ...
0
votes
1answer
109 views
Requirements for Repeated TCP connects
I am using Winsock, and I have a need to issue a TCP connect repeatedly to a third-party server. These applications will stay up potentially for days at a time. I am the only client connecting to the ...
0
votes
1answer
430 views
TCP faster than UDP over Ethernet?
I built a program that provides some statistics to TCP and UDP transfers. The client sends a packet containing 30KB of data and is sent 100 times continuously to the server. The client and server in ...
1
vote
1answer
111 views
TCP Connect Fails
I have two applications that talk via TCP, both of which run on Windows XP machines. The client is a third-party application for which I have only the executable, no source. The IP address of the ...
2
votes
1answer
442 views
Packet loss during 3way handshake
I need to perform a 3way stop and wait handshake between client and server applications written in c++ (with winsock 2) for an assignment. The client sends a SYN. The server increments the client ...
1
vote
1answer
606 views
More Cpp, Winsock, RSA and OpenSSL
First off I want to warn you there is alot of code here! I want the client to connect to the server using RSA with the OpenSSL library. When I launch the server everything is fine but when I try and ...
1
vote
1answer
323 views
Winsock TCP listener stays in LISTENING state after successful closesocket() call
I'm working on an existing DLL where a TCP listening socket is created and is set to immediately rebind to the same socket using SO_REUSEADDR in case of failure. Currently, however, there's an issue ...
4
votes
4answers
790 views
Winsock C TCP Socket
I've worked with TCP sockets before in Python. It looks pretty similar in C but I can't get anything to work. socket(AF_INET, SOCK_STREAM, 0); returns -1, which of course indicates an error. How could ...
0
votes
2answers
812 views
Winsock C++ Proxy
I'm trying to get this code to work:
#include <stdio.h>
#include <tchar.h>
#include <iostream>
#include <WinSock2.h>
#pragma comment( lib, "ws2_32.lib" )
#include ...
2
votes
2answers
526 views
TCP connections with overlapped I/O
Is it possible to initiate a TCP connection request with overlapped I/O, and cancel it before the connection has been completed in Windows? I need to support at least Windows XP SP2.
0
votes
1answer
146 views
troubleshooting tcp/ip connection failure in my application
I am having a desktop application which can talk to a server application using TCP/IP. It was working all these days but now we ran into an issue. The log message in the server shows that the socket ...
2
votes
1answer
221 views
Choosing Local Port Number
When using TCP under Winsock, is it possible for my client to choose its local port number when connecting?
Thanks,
Dave
1
vote
2answers
802 views
Winsock TCP Connect with Infinite Timeout
I would like my Winsock TCP connect() call to block with an infinite timeout.
Questions:
1. How may I do this?
From a functional perspective, my desire stated above is exactly what I need. Is there ...
1
vote
4answers
646 views
Is acknowledgment response necessary when using send()/recv() of Winsock?
Using Winsock, C++, I send and receive the data with send()/recv(), TCP connection. I want to be sure that the data has been delivered to the other party, and wonder if it is recommended to send back ...
2
votes
2answers
188 views
TCP/IP books for windows OS [closed]
I've heard about these TCP/IP books which apparently seem to focus on TCP/IP in UNIX
TCP-Illustrated-Vol.1
TCP-Illustrated-Vol.2
Apart from the code introduced in these books, Are there any ...
3
votes
1answer
1k views
Gracefully shut down a TCP socket
I'm writing an IRC client in C++ and currently I'm having an issue where, upon exit, I do:
Send("QUIT :Quit\r\n"); // just an inline, variadic send() wrapper
shutdown(m_hSocket, SD_BOTH);
...
0
votes
1answer
480 views
Winsock TCP Packets sent but not reaching host
When the server sends 4 or more - 25 Byte packets to the client only the first 2 are processed by the client. I am using Event select on the client, and send on the server. There are no errors but ...


