Tagged Questions
5
votes
6answers
983 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 ...
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
2answers
417 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
227 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;
...
1
vote
1answer
152 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
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 ...
0
votes
1answer
61 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
57 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 ...
0
votes
1answer
398 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
143 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
209 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
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 ...