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
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 ...
0
votes
2answers
328 views
Difference between winsock remoteport and winsock localport visual basic 6
Ive searched internet but didnt got the answer can any1 explain me the difference between them
1
vote
3answers
81 views
Detecting a timed out socket from a set of sockets
I'm currently building a server using winsock . My server will deal with multiple clients, so I am using select() function and the read, write and exception sets. I already know that if a particular ...
0
votes
1answer
49 views
Receive on a socket untill peer sends 50 bytes inside an interval of 60 seconds
How would I go about coding this using VC++ and WinSock ?
Select ?
Recv(...,...,...,MSG_PEEK) ?
I just need the algorithm.
Thanks.
+
solved
see the following code for TCP:-
/*
* -2 : ...
0
votes
0answers
42 views
Simplest way to get Dead Reckoning into my game?
I have a game where there are many sprites flying around the screen, with the user controlling one of them with the arrow keys/WASD.
I have it set up over a network so that the host game is the one ...
0
votes
1answer
98 views
Implementing copy constructor involving windows HANDLE objects
I'm a newbie when it comes to using win32 API, so please bear with me.
I'm currently working on a C++ project that involves Winsock, but I've become confused on the proper way to work with the event ...
1
vote
1answer
211 views
WinSock UDP socket creation order in loopback.
I have a network application meant for a private LAN. I am doing my testing using loopback. When I test on the LAN the socket creation order does not matter. If I test using loop back 127.0.0.1 then ...
1
vote
3answers
106 views
unblocking WSAccept for blocking TCP server sockets
I'm writing a TCP server (blocking socket model).
I'm having trouble implementing a valid normal program exit when the server is waiting (blocking) for new connection attempts on Accept (I use ...
0
votes
0answers
87 views
sendmsg/recvmsg MinGW port
I need make libmatthew's unix-java.c port to MinGW. I've found almost all required definitions, but no for sendmsg and recvmsg:
struct msghdr msg;
char iov_buf = 0;
struct iovec iov;
...
0
votes
0answers
125 views
Packet relay to bridge two networks (C#)
I have 2 computers and a server.
Computer 1 has an IP address of 10.0.0.1
Computer 2 has an IP address of 10.0.1.1
They're both on different networks.
A server is connected to both networks.
...
0
votes
3answers
161 views
Calling WSASend() in completion port?
Many of you know the original "send()" will not write to the wire the amount of bytes you ask it to. Easily you can use a pointer and a loop to make sure your data is all sent.
However, I don't see ...
0
votes
1answer
115 views
Use fprintf on a socket in Windows
I'm trying to use fprintf on a socket on Windows. Many of the online examples are UNIX examples. The equivalent code for Windows is what I'm asking about here.
Ultimately, I'd like to do this:
...
2
votes
1answer
73 views
Synchronizing socket send()
Alright so basically I have 3 threads.
Each one of them use a function which inside uses the send() on a specific socket (let's call it S).
Here's a small design:
How would I synchronize the S ...
0
votes
0answers
79 views
Winsock WSPRecv get overlapped http data from Chrome
Chrome on Windows 7 uses overlapped structure to receive data.
I'm creating an sniffer for chrome in winsock level. I can print the http response html body but I can't see the http response header in ...
0
votes
2answers
370 views
I want to learn about vb6 socket programming but dont know from where to start?
I want to learn about vb6 socket programming but without the help of winsock.
Any reference or some sort of ebooks might help me in learning this but cant find any. if any1 can lead me to the ...
0
votes
2answers
293 views
My client/server program created in vb6(winsock) dont work on WAN but perfectly works n LAN Why?
I've created a simple client/server program with the help of winsock in vb6. It perfectly works on LAN but the problem is it doesn't work on WAN. All ports are already open, Firewall is already Off, I ...
-1
votes
1answer
231 views
connect() function fails wsagetlasterror() 10038
Hello i am a beginner socket/c programmer and from this tutorial i have the connect function returns 10038 error. please help. what am i doing wrong?
also whats the difference between winsock and ...
0
votes
1answer
119 views
get ipv6 address from addrinfo struct in windows xp
how is it possible to get an ipv6 address from a addrinfo struct under windows xp?
is there any other possibility than WSAAddressToString (has anyone ever successfully used that one?) ?
...
0
votes
1answer
319 views
Sending and receiving structs using UDP (WinSock & C++)?
I have two programs. I need one of them to send data and the other to receive that data.
I have some code in place that is hopefully sending a struct across the network.
However, I don't even know ...
-3
votes
2answers
102 views
Using Winsock to mimic a C++ OpenGL game? [closed]
I have a basic OpenGL game with sprites flying around and the user controls one of them.
I want to use WinSock to have two versions of the game running over a network.
The first version will be the ...
0
votes
1answer
342 views
Winsock UDP server
Hi I am currently working on a project where we are creating a UDP server to communicate with a KUKA robot. We are able to establish the connection with the robot and exchange the data back and forth ...
0
votes
2answers
592 views
Winsock bind() failing with WSAEADDRNOTAVAIL for directed broadcast address
I am setting up a UDP socket and trying to bind what should be a valid network broadcast address to it (192.168.202.255 : 23456), but bind fails with error 10049, WSAEADDRNOTAVAIL. If I use a ...
0
votes
1answer
179 views
How to query socket keep alive values using Winsock?
I'm writing a JNI library for a Java application that needs to set the values of the TCP Keep Alive option. (It sets the values for Keep Alive Timeout and Interval) For the most part, I think I have ...
-1
votes
1answer
77 views
Calculate latency using WinSock
As the title says, how can I calculate the latency between a client and a server in ms using WinSock 2.2 ?
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 ...
2
votes
1answer
277 views
communication between winsock and java socket
I'm trying to build a client/server application with a java server on the one and a c++ client on the other side.
Client:
while(true)
{
sock = con.connectToServer(argv[2], port);
...
0
votes
1answer
209 views
TCP winsock File uploading using C++ TransmitFile and overlapped I/O
I am writing an application responsible of uploading files to server, in C++ Winsock, i wrote it successfully using the multithreading technique and it works fine with no errors. But when i want to ...
0
votes
1answer
135 views
HTTP POST mutli part “BAD REQUEST”
I'm trying to upload a file using POST
here's my request :
POST /upload.php HTTP/1.1
Host: localhost
Content-Type: multipart/form-data; boundary=---------------------------552335022525
...
1
vote
1answer
63 views
Accept call does'nt block the second time (or more than one time)?
I have the following code and I`m not sure why wont it work properly .
Its a multithreaded TCP server that loops accept() calls and triggers a designated
thread each time .
The problem is that the ...
3
votes
1answer
238 views
Listening for arbitrary ICMP Time Exceeded (TTL = 0) packets with WinSock
So my goal is to use WinSock and raw sockets in order to listen for all ICMP Time Exceeded packets (which are generated by gateways when the TTL of an IP packet reaches 0).
My first approach involved ...
0
votes
1answer
109 views
Handling of LPWSAOVERLAPPED after WSASend
I am currently writing a winsock server-side socket in managed C++. After creating the LPWSAOVERLAPPED object and passing it to the WSASend function, I do not see where to delete it when the operation ...
1
vote
1answer
102 views
windows service code in c ,where to write service logic code?
the title is quite general but my doubt is specific.
I have doubt regarding where to write the service logic code (in service control handler or in ServiceMain),as in whatever the functionality the ...
0
votes
1answer
148 views
WSAEWOULDBLOCK error on non-blocking Connect()
I am trying to connect to a server on another machine via a non-blocking connect().
However, when I do so, Connect() returns -1, and I receive WSAEWOULDBLOCK from WSAGetLastError().
MSDN ...
3
votes
2answers
380 views
WSAEWOULDBLOCK handling
I have written a socket for a server in C++ CLI that is using winsock. The sockets are using async methods for sending, receiving and accepting connections. After implementing my socket in the ...
0
votes
1answer
94 views
Winsock Programming - WsaGetSelectError,
Little problem with my Winsock programming, I am attempting to integrate a graphical interface with the ability to pass data in between two clients.
Basically, C is pressed and executes the first ...
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 ...
1
vote
1answer
128 views
how to send and recv specific chars winsock
I have char* MESSAGE = new char[256]; and char* DISCONNECT = new char[256]; however when I use winsock to send them from the client and recieve them in the server (the server has the same char names) ...
0
votes
1answer
203 views
winsock threaded server does not work well when multiple clients connect?
I have a server that spawns a thread for each client that connects to it. The thread then deals with receiving/sending data to the client. Here is my server code:
//////////////
// START ...
-1
votes
1answer
66 views
Socket application not work properly [closed]
I trying to write a small code to send a file over network on Windows, but it seem not work properly.
This is my code:
char *arrFile = readFile("test.exe");
int fileSize = getFileSize("test.exe");
...
0
votes
3answers
183 views
http.sys implementation
We all know that there's a big sweet piece o' binary named http.sys kernel-mode driver in our Windows that does HTTP handling for us. That is basically all we know about it.
But today I thought: ...
-5
votes
1answer
136 views
I created a messed up program that makes a beep for some reason? can someone explain this to me? [closed]
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
#include <winsock2.h>
#include <ws2tcpip.h>
#include <stdlib.h>
#include <stdio.h>
// Need to link with Ws2_32.lib, ...
0
votes
1answer
128 views
Code To block a port for a process in C++, Windows 7
I'm developing a windows Firewall as my Final Year Project. For this I want to block port for processes in c++. Which API should be used to do this, or if there's any KERNEL MODE API which can be ...
1
vote
1answer
501 views
UDP Hole Punching (c++/winsock)
stackoverflow users!
I have an app that has to deal with p2p, and that's how I get to UDP Hole punching. But I ran into troubles with implementation. Hope, you can give me some tips.
I've got ...
0
votes
1answer
69 views
Under winsock2, what alternative is there to select()?
I have a working multi-client, single-threaded TCP/IP server application built in C++ over bare winsock2. The heart of it uses select() to wait for new work to do. I'm thinking of extending the number ...
0
votes
3answers
150 views
I include Ws2tcpip.h but my compiler says inet_ntop is undeclared
I tried to compile some sample code from Beej's networking guide but my compiler is giving me the error "C:\Dev-Cpp\mainweq.cpp `inet_ntop' undeclared (first use this function)" even though I included ...
0
votes
2answers
149 views
C++, Winsocket DLL Send injection
Thanks for reading. I've been trying to send packets with "send" from Winsock from an injected DLL, but i coulnd't do it, i've seen alot of guides about HOOKING "recv" and "send", but not about ...
0
votes
1answer
45 views
recieving data from sockets nonblockin winsock2?
I am fairly new to cpp.
I am wanting to be able to recieve data via sock_stream. I want to pass the recieved data from SocketInfo->DataBuf.buf to an char recvArray[1024] buffer initiallized at the ...
1
vote
1answer
301 views
imap client - how to compose proper request?
I'm trying to make simple IMAP client using winsock/OpenSSL, is this possible without additional libraries? If so, how to send request and get responce? Server is responding only once,even without ...
1
vote
1answer
133 views
Winsock recv loop not functioning correctly
For some reason when I connect to my C++ server with Putty I get this
Recv: (string I typed)
Recv:
This happens everytime I send characters to my server using Putty
Source follows. If nessicary I ...
0
votes
0answers
24 views
keeping two DirectX windows in focus for networkupdating
I have a program which currently looks like this - http://i.imgur.com/Wybt9.png?1
it's two directX programs (one client and one server, each with their own cmd window) each showing the same thing but ...
