1
vote
1answer
72 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
2answers
276 views

GetQueuedCompletionStatus hang

I am tryign to find out why my program is freezing and i narrowed it down to GetQueuedCompletionStatus(). All the IOCP threads are frozen and the only blocking call the threads have is ...
0
votes
0answers
104 views

Setting IO On A Socket

I have a C++ program where I connect to my server with a socket and I need to set the overlapped for the socket. Doing the following does not work: Function int set_wsa_proxy_client ( proxy_client ...
0
votes
2answers
261 views

IOCP multiple socket completionports in same container

For the past couple of days I have been thinking about how to solve one of my problems I am facing, and I have tried to research the topic but don't really know what I can do. I have 2 sockets in the ...
9
votes
1answer
941 views

GetQueuedCompletionStatus can't dequeue IO from IOCP if the thread which originally issued the IO is blocking in ReadFile under windows 8

My app stop working after switching to windows 8. I spend hours to debug the problem, found out IOCP behave differently between windows 8 and previous versions. I extract the necessary code to ...
0
votes
1answer
85 views

Getting client data fast

Is there a better method (using Windows) for getting a moderate amount of data from many clients quickly without using select (but I am willing to use select if need be). IOCP is no good to me and ...
0
votes
1answer
291 views

IOCP: notifications without bytes copy

I have IOCP application that stores a 64kb buffer per socket context. It uses lot of RAM, while handling thousands of sockets. Instead of this i want to switch to model where I have a 64kb buffer per ...
1
vote
1answer
297 views

How to get client real ip-address and port using IOCP?

I need to take ip-address and port of clients in server. Server written on C++ using IOCP, so I don't accept clients, I create new socket and then accept (AcceptEx) client on this ready socket. And ...
0
votes
1answer
235 views

How to implement ConnectEx, AcceptEx in Winsock SPI

These are Microsoft specific extensions and I wonder if it is possible to implement them in third-party drivers. They are both needed to implement pure IOCP client and server code. The Function ...
0
votes
1answer
185 views

Multiple immediate number of WSASend calls and the data sending order

As you know, WSASend-completion-WSASend-...(repeat) guarantees sending data in order. However, I heard that WSASend-WSASend-WSASend-completion-completion-completion ALSO GUARANTEES sending data in ...
1
vote
1answer
567 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 ...
0
votes
1answer
742 views

Easiest way to add SSL to a IOCP based windows server?

I have a IOCP based server which we have used for long time. Now we need to add SSL support to this. I am struggling to find a clean solution. I have found two options suggested in the other two ...
0
votes
1answer
259 views

TransmitFile + SChannel

I'm using the TransmitFile API with I/O completion ports for an efficient multithreaded file server on Windows. This all works fine, but I've now also implemented secure sockets using SChannel. ...
0
votes
2answers
406 views

Windows IOCP - any advantage for single-socket application?

As I understand IOCP under Windows Server 2003/2008 and C++ programming, they are more-or-less the highest performance way to service either multiple sockets, instead of select, or to tie together ...
0
votes
1answer
387 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 ...
1
vote
2answers
837 views

ConnectEx with IOCP problem

I've made a simple dummy server/dummy client program using IOCP for some testing/profiling purpose. (And I also wanted to note that I'm new to asynchronous network programming) It looks like the ...
1
vote
2answers
438 views

WSASend() with more than one buffer - could complete incomplete?

Say I post the following WSASend call (Windows I/O completion ports without callback functions): void send_data() { WSABUF wsaBuff[2]; wsaBuff[0].len = 20; wsaBuff[1].len = 25; ...
0
votes
1answer
348 views

An IOCP documentation interpretation question - buffer ownership ambiguity

Since I'm not a native English speaker I might be missing something so maybe someone here knows better than me. Taken from WSASend's doumentation at MSDN: lpBuffers [in] A pointer to an ...
1
vote
1answer
3k 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 ...
5
votes
6answers
1k views

IO completion port key confusion

I'm writing an IO completion port based server (source code here) using the Windows DLL API in Python using the ctypes module. But this is a pretty direct usage of the API and this question is ...