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
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 ...
1
vote
2answers
113 views

C++ win client send linux server variable

I'm fairly new to c++ programming. I am trying to code a windows client that communicates to a linux server. That part I have successfully done. Now I don't know what to do to continue this. This is ...
0
votes
0answers
140 views

winsock udp send and receive

I wrote a UDP server program that listens to UDP packets on some port and replies. I made the reply packet be sent through the same socket as the receiving socket, to the address of the sender and ...
1
vote
2answers
122 views

Winsock send() blocks server?

I have read that the send() function on Winsock blocks until the ACK from the last packet is recieved. Now I am playing with a server for a turn based role playing game. Everything is handled by one ...
1
vote
2answers
245 views

Determine how many bytes can be sent with winsock (FIONWRITE)?

With select I can determine if any bytes can be received or sent without blocking. With this function I can determine how many bytes can be received: function BytesAvailable(S: TSocket): Integer; ...
1
vote
4answers
671 views

Winsock send call is very slow

I am making a gameserver (TCP) which might need to handle 3000+ connections. Currently its having 50 connections and i am already experiencing lags. I found out that its the winsock send() calls that ...
0
votes
1answer
626 views

Winsock problems sending data C++

I'm trying to code a simple FTP client with Winsock. I have the following code: using namespace std; #include <iostream> #include <cstring> #include <cstdio> #include ...
1
vote
1answer
554 views

Winsock nonblocking send() wait buffer. What is the correct method?

I have some questions about when it is needed to store the data in the wait buffer (waiting for the FD_WRITE event). This is my send function (fixed): bool MyClass::DataSend(char *buf, int len) { ...
0
votes
1answer
297 views

How to simulate WSAEWOULDBLOCK on blocking send()?

I'm trying to simulate WSAEWOULDBLOCK on blocking send() with setsockopt by reducing the internal Winsock send buffer to a very small value and 2 threads sending at same time... Droping the ...
0
votes
2answers
191 views

Can send() become non-blocking automatically?

Do I have to wait for signals with select() in order to send something in non-blocking sockets ? What if I have always have something to send and then I call send() function ? I mean, everytime i call ...
0
votes
1answer
97 views

Using send() twice for sending different types of data

I have a client which connects to a server and tries to send() some data. However there are two types of data that I need to send, lets say information about the weather and the current time (just ...
0
votes
1answer
336 views

C++ Socket recv() reads the same string twice (WinSock2)

I'm working on creating a maze game, where two players connect (one acts as host, the other the player). In this, I'm sending XML data as a string using the send() function. (I'm also using a pre-made ...
0
votes
0answers
256 views

C++ send/recv detouring and getpeername()

EDIT: I found the problem, apparently the game client doesn't like when write into a file from the detoured functions.I don't know what it has to do with getpeername() but it's solved. A friend has a ...
1
vote
1answer
340 views

Under what conditions will winsock blocking send() return 0?

MSDN says the following: "Calling send with a len parameter of zero is permissible and will be treated by implementations as successful. In such cases, send will return zero as a valid value. For ...
7
votes
4answers
786 views

Sending emails using C

I have just started learning about socket programming and learned about winsock and achieved some progress. my question is basically: I want to send emails, what should I do? points to be mentioned: ...
0
votes
2answers
188 views

Winsock sends additional data

I'm writing a small client/server application in c++ with winsock and I can't explain a few things that are happening.. I wrote 2 basic functions that send/receive all the data through a TCP ...
1
vote
5answers
215 views

Do send/recv transfer data in identical chunks?

From my client: send(socket, "this is a buffer", ...); send(socket, "second buffer", ...); From my server, is recv guaranteed to end one chunk with the r from "this is a buffer" and begin another ...
0
votes
1answer
729 views

sending Unicode string via winsock in c++

I changed the below code for sending Unicode string to client. please check it and tell me why in client I can't recv any data when txt contains an Unicode character?? bool write_to_descriptor( int ...
1
vote
4answers
644 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 ...
3
votes
2answers
679 views

Is there an 'optimal' buffer size when using send()?

Let's say you're transferring a file of arbitrary length in chunks over TCP/IP: looping... read(buffer, LENGTH) send(mysocket, buffer, LENGTH, flags) My question is, what would be optimal ...
1
vote
2answers
220 views

Ensuring send() data delivered

Is there any way of checking if data sent using winsock's send() or WSASend() are really delivered to destination? I'm writing an application talking with third party server, which sometimes goes ...
1
vote
3answers
2k views

Using Winsock “send” function in Java (or similar)

I have a feeling my problem is a bit strange, but here goes... I have a C++ program (from another organization) that interacts with a camera connected to hardware via Ethernet using sockets. On the ...
0
votes
1answer
417 views

Winsock WSAAsyncSelect sending without an infinite buffer

This is more of a design question than a specific code question, I'm sure I am missing the obvious, I just need another set of eyes. I am writing a multi-client server based on WSAAsyncSelect, each ...
0
votes
2answers
475 views

Is there any reason for a blocking call to winsock send() function on Vista to return immediately?

Is there any reason for a blocking call to winsock's send() function on Vista to return immediately ? It works with expected delay on XP and below. I'm wondering if this has got anything to do ...
0
votes
2answers
2k views

Winsocks Send and Receive

I'm using the WSAEventSelect I/O model in Windows Sockets and now I want to know that how may I know that my send and receive operations have sent and received all of the data? After I know that, ...