Tagged Questions

6
votes
2answers
709 views

IOCP C++ TCP client

I am having some trouble implementing TCP IOCP client. I have implemented kqueue on Mac OSX so was looking to do something similar on windows and my understanding is that IOCP is the closest thing. ...
4
votes
4answers
368 views

Is this program running Asynchronous or synchrounous?

When I run this program OVERLAPPED o; int main() { .. CreateIoCompletionPort(....); for (int i = 0; i<10; i++) { WriteFile(..,&o); OVERLAPPED* po; ...
2
votes
1answer
209 views

IOCP with task scheduler (Threaded Building Blocks)

I'm using TBB and was wondering how I could use IOCP with its task scheduler. Has anyone done this? If so, some details would be greatly appreciated. I don't have much experience with IOCP, but I'd ...
2
votes
3answers
284 views

How to pass user-defined data to a worker thread using IOCP?

Hey... I created a small test server using I/O completion ports and winsock. I can successfully connect and associate a socket handle with the completion port. But I don´t know how to pass ...
1
vote
1answer
184 views

Winsock IOCP Server Stress Test Issue

I have a winsock IOCP server written in c++ using TCP IP connections. I have tested this server locally, using the loopback address with a client simulator. I have been able to get upwards of 60,000 ...
1
vote
4answers
80 views

Packet timing problem

I have a client that every 8 seconds will send a packet to a server. If the server detects the packets are sent too fast it will disconnect the client. In the client I call Sleep(8000); before sending ...
1
vote
1answer
1k views

IO Completion ports: How does WSARecv() work?

I want to write a server using a pool of worker threads and an IO completion port. The server should processes and forwards messages between multiple clients. The 'per client' data is in a class ...
1
vote
1answer
370 views

Async operations with I/O Completion Ports return 0 bytes transferred

Asynchronous operations with I/O Completion Ports return 0 bytes transferred, although the I/O operations work as expected (my read buffers become full). BYTE buffer[1024] = {0}; OVERLAPPED o = {0}; ...
1
vote
2answers
496 views

A question about windows iocp

When I write a program about IO completion port in Windows Vista, the first sample didn't work and the GetQueuedCompletionStatus() can not get any OVERLAPPED structures. So I put the OVERLAPPED ...
1
vote
2answers
684 views

IOCP, Cross platform libraries?

I've recently bumped into something called IOCP on the windows platform, to be more precise: Input/Output Control Ports. This seems to be the most efficient way to code your server software when it ...
0
votes
1answer
120 views

iocp error, cannot receive message sometimes

iocp code is below: void xIocpWorkThread::Execute(LPVOID lpParam) { DWORD dwNumberOfBytes = 0; ULONG_PTR ulCompletionKey = 0; IOCP_UNIT * pIocpunit = 0; DWORD last_err = 0; ...
0
votes
1answer
95 views

Packet Delay Variation (PDV)

I am currently implementing video streaming application where the goal is to utilize as much as possible gigabit ethernet bandwidth Application protocol is built over tcp/ip Network library is using ...
0
votes
2answers
260 views

GetQueuedCompletionStatus delayed

I have written complex library for managing network communication based on iocp mechanism. Problem is that when server closes the connection by calling API method closesocket() this information is ...
0
votes
3answers
326 views

TCP IOCP won't receive after acceptex

I'm trying to write an IOCP server. Basically, I have it accepting new connections. For the purpose of my testing, I'm running and connecting to 127.0.0.1. I create the pseudo socket prior to ...
0
votes
2answers
95 views

My graphic represenation and interpretation of socket-based models

http://img600.imageshack.us/img600/3567/graphicrepresentation.png Am I reasoning right way? If so, could anyone please show me, like in scheme above, how would I/O Completion Ports work? Before I'll ...
0
votes
1answer
208 views

How do I properly shut down an IOCP server?

I can find tonnes of article's about starting up an IOCP server, but none about properly shutting it down =/ What is the proper way to shut the server down when you are done? more specifically, I ...
0
votes
1answer
467 views

C++ Windows IOCP - HTTP POST data missing

I have written a very simple IOCP HTTP server that works for the GET verb, but not POST. I create a socket and a listen thread in which accept() is waiting for a connection. When a client connects I ...
0
votes
1answer
665 views

some OVERLAPS using WSASend not returning in a timely manner using GetQueuedCompletionStatus?

Background: I'm using CreateIoCompletionPort, WSASend/Recv, and GetQueuedCompletionStatus to do overlapped socket io on my server. For flow control, when sending to the client, I only allow several ...