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.

learn more… | top users | synonyms

0
votes
1answer
140 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
50 views

Is there a way send ethernet packet directly on link using winsock on windows?

Is there a way send ethernet packet directly on link using winsock on windows? I need to broadcast an ethernet packet on a link (i.e. Destination Mac-Address: Broadcast (ff:ff:ff:ff:ff:ff))
0
votes
0answers
34 views

Winsock Non blocking IO with heavy payloads. performance for IPC

While a server is pushing heavy payloads, say streaming a video, can client also send the same amount of data back to server. Or would this cause a bottleneck. Fullduplex should ideally handle this. ...
0
votes
1answer
48 views

Sockets Winsock async blocking Read Write simultaneously

I have a client server arch and I am using blocking win sockets. I have a read and a write thread both on the server and on the client side. Say Client is waiting (blocked) on a read() call for ...
0
votes
0answers
45 views

Where to place Winsock declarations in Win32 gui program?

So I have a win32 project with the Windows procedure and everything. I want the client to be able to connect to a server, but at the same time to be able to process window messages. So I already ...
0
votes
1answer
169 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 ...
0
votes
0answers
56 views

Using WINSOCK on open socket id

I have one open socket connection, and I need to add new program to this connection using current open socket id or something like that, so send and receive data over this connection, is it possible ...
0
votes
0answers
39 views

E-mail daemon using WinSock and SChannel

lastly I wrote an e-mail client with POP3 and SMTP do send e-mails from applications in C++. It wass pretty simple job due to extensive info in google (SMTP wiki); Now I noticed that each e-mail ...
0
votes
1answer
70 views

c++ winsock (winsock2) recv() skips \0 byte

I'm sending the following data from server: 31 37 38 33 00 00 00 00 00 00 00 33 34 37 78 35 74 32 71 39 37 34 79 35 74 76 38 35 67 6e 32 6d client side using winsock2.h: ... int recvbuflen = 32; ...
0
votes
1answer
164 views

Recv() Function Hangs After Sending HTTP GET Request in Winsock in C++

I am trying to make a program that uses HTTP in winsock, but I have run into a problem where the recv function just hangs there. int connect() { WSADATA t_wsa; //WSADATA structure WORD wVers = ...
0
votes
1answer
33 views

__cdecl wrapping WinSock function as callback in plain C and call it

Have prepared such function, where some WSA functions will be used as callback: int StartWinSock(int (*WSAStartup)(WORD, LPWSADATA)) { } But when in other code, I'm trying to launch it: ...
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 ...
0
votes
1answer
61 views

How many sockets are needed per connection?

Say we have a server program with socket sa and new_socket. The tutorial I'm using takes socket sa and new_socket, and two structures of sockaddr_in named server and client; then binds the socket to ...
0
votes
2answers
101 views

How to use getaddrinfo()?

Im trying to make a simple program that takes in a string like www.google.com and returns the ip address... What i have so far: char* hostname = new char[www.size()+1]; std::copy(www.begin(), ...
0
votes
0answers
49 views

Howto set the UDP source address on Windows

There seems to be no portable way to set the source IP for sending UDP datagrams from sockets bound to INADDR_ANY, but at least on Linux and FreeBSD it can be done using sendmsg() and the IP_PKTINFO ...
0
votes
1answer
52 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
0answers
146 views

How do I hook ws2_32.connect on Windows XP?

I've been hooking ws2_32's connect function in external processes. I simply create the process with CREATE_SUSPENDED and then inject the "hook.dll" into the process to hook the connect function. ...
0
votes
1answer
53 views

Visual C++ program complains about net framework

I wrote a simple client program in Visual C++ 2010 which connects to a client using winsock. When I try to run this program on another computer, it complains about missing Net Framework. I wonder why ...
0
votes
0answers
29 views

Does ConnMgrEstablishConnectionSync prevent winsock connections?

My winmobile 6.5 application connects via winsock api to another application on the device. This works well. However when my application also establishes an 3G connection via ...
0
votes
1answer
76 views

Netinet and netdb not found, c++ network libraries

I was trying to run example codes to learn how to use winsock on c++ from the following links: http://www.linuxhowtos.org/data/6/client.c http://www.linuxhowtos.org/data/6/server.c and the following ...
0
votes
3answers
58 views

Storing buffer into a variable

I display my buffer like this: void WINAPI MyUCPackets(char* unpkt, int packetlen, int iR, int arg) cout << "[" << packetlen << "] "; for ( int i = 0; i < packetlen; i++ ) { ...
1
vote
0answers
33 views

Can I use the winsock api from python?

I wanted to use asynchronous socket operations with python using the Winsock WSAEventSelect function and the like. But there doesn't seem to be a way to call the winsock api functions from python. Am ...
1
vote
1answer
97 views

Why is it not safe to use Socket.ReceiveLength?

Well, even Embarcadero states that it is not guaranteed to return accurate result of the bytes ready to read in the socket buffer, but if you look at it, when you place -1 at Socket.ReceiveBuf (this ...
1
vote
1answer
279 views

C++ Winsock Socket Error: 10038 (WSAENOTSOCK)

I have an master slave application Master running on WinXp(i7, 2.1 Ghz) and slave being a controller board. The master sends request to the slave and the slave in response send to the master the data ...
0
votes
0answers
24 views

Winsock API, Access point change

I am new to Winsock programming. I have a server that is stable and client which runs on Winsock. Currently, I open a connection to server and send and receive data. I never close the connection ...
0
votes
1answer
129 views

C error: undefined reference to

I have created the following socket server in C (Windows) making use of the library Winsock. #undef UNICODE #define WIN32_LEAN_AND_MEAN #include <windows.h> #include <winsock2.h> ...
0
votes
1answer
77 views

Tidhttp taking too long for multimedia webpages

Tidhttp.Get() appears to take a long time to return the html source at the url containing videos etc. Is there a way I can set it to ignore all images and videos? I only need the html source.
0
votes
1answer
132 views

How do i forcibly process messages inside a thread?

Despite having Application.ProcessMessages, which is only for the Main VCL Thread, is there a similiar method for a TThread class ? or how can i write one on my own ? lets say that on the client side ...
0
votes
1answer
168 views

Why do I get the WSAENOTSOCK error in this code?

Here is Main.cpp up to the point where the error happens: int WINAPI WinMain(HINSTANCE hInst, HINSTANCE hPrevInst, LPSTR lpCmdLine, int nShowCmd) { if(SUCCEEDED(CoInitialize(NULL))) { ...
0
votes
2answers
136 views

Winsock.SendData equivalent with Javascript?

Can the following VB Script to open an IP cash drawer be done in Javascript instead? Private Sub CashDrawerConnect_Click() Winsock1.Close ipaddr = "192.168.2.5" Winsock1.RemoteHost = ipaddr ...
0
votes
1answer
45 views

Maximum Payload and Validity of a UDP Server

I have Created A UDP Server-Client application. There is only single thread at Server's side which continuously executes recvfrom(). If I run 3 Clients Simultaneously from 3 different machines, and ...
-1
votes
1answer
126 views

Prevent a process to access internet [closed]

I'm using Delphi and I would like to code a small "loader" that starts an application and hooks all the Socket APIs so it prevents access to the internet. I have a working hook unit to do that but I ...
0
votes
1answer
91 views

is it safe to define a Helper Class for TCustomWinSocket?

in order to make it more comfortable for me to read/write code, i stacked all those functions into a helper class, so i could avoid all these silly functions in client/server main units, i have put it ...
0
votes
1answer
133 views

UDP Socket receive Garbage Value

System Configuration: Win XP (i7 2.1 Ghz) External USB NIC. Communication : Master slave communication. Constrain - Communication Protocol UDP. Socket Configuration: RecvFrom - Non blocking. Socket ...
1
vote
0answers
140 views

Handling 10 Clients with a Single UDP Server using Winsock

I have already established a Server-Client Application using UDP Sockets, but my Server is not capable of handling more than one Client at a time. Now I want to modify my applicaton in such a way that ...
0
votes
1answer
126 views

WSAConnect returns WSAEINVAL on WindowsXP

I use sockets in non-blocking mode, and sometimes WSAConnect function returns WSAEINVAL error. I investigate a problem and found, that it occurs if there is no pause (or it is very small ) between ...
0
votes
1answer
137 views

I keep receiving 0 byte from TClientSocket

Using DbgView, i saw that after i receive a Stream, the server then receives 0 bytes like more than 100 times, what is this ? this is new to me, i never saw this happening. i personally have a ...
0
votes
1answer
112 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 ...
1
vote
2answers
143 views

Where does winsock store ip address of a socket?

Suppose I have a simple winsock server that has a listening socket, and then when a connection is accepted, it stores the socket in an array of sockets (to allow multiple connections). How can I get ...
0
votes
1answer
137 views

Server socket can connect few times only (Winsock C++)

Hi I am trying to write a server winsock in C++ to allow connection from PHP client code. The PHP will request the data from server, receive then close the connection. However, after 2-3 times of ...
0
votes
1answer
112 views

How to use SO_KEEPALIVE with TServerSocket?

Does the component has a set option property or i need to use setsockopt function ? i want to enable the os built in Keep-alive instead of me having to write it myself... -.-" so, my question is, ...
0
votes
2answers
84 views

Why would a .NET app stop being able to perform any network I/O?

I'm investigating a problem seen on a client workstation where a, fairly large, WinForms .NET 3.5 application will occasionally stop being able to perform any type of network operation and will ...
0
votes
0answers
210 views

Client unable to receive messages from Broadcast UDP Server :( (Winsock)

I have developed a Broadcast Client Server application in which Server is set to BROADCAST option. The Server Broadcast the message and client should receive it, but this is not happening. I think I ...
0
votes
1answer
604 views

Single Server, Multiple Clients UDP Application in C (Winsock)

I have created single Server and Single Client echo application. It works fine for single server and single client. But now I want to make it more practical by handling multiple clients for a single ...
0
votes
1answer
154 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 ...
0
votes
2answers
106 views

Execution time for Winsock function too long

I have a application running on a Windows XP platform (i7 2.1 Ghz processor). This application is a master/slave based communication between master and slave nodes, over UDP. The master sends a ...
0
votes
0answers
151 views

Communication between C# and VB6 applications over TCP

The scenario: A VB6 application and a Windows Service developed with C#. The goal is for the VB6 application to communicate with the service over TCP. I implemented a TcpListener in the service: ...
0
votes
1answer
56 views

Single client talking to multiple Servers

I'm working on a project where I have a single client that need to open a Telnet session to multiple servers (100) and wait for messages. The messages are small (< 80 bytes) and will occur at ...
1
vote
0answers
132 views

Determining if existing connections are using TCP KeepAlive under Windows

In Windows (Vista and later) is there a way, or a tool, that can aide in determining wether an existing, already established, outgoing TCP connection, was created with the SO_KEEPALIVE option. On ...
0
votes
3answers
226 views

Simple C++ server-client application with winsock

I'm trying to write a simple server-client application, which all it's supposed to do is this: Client connects to server, Server waits for a message, client takes input from user, and sends it over to ...

1 2 3 4 5 22