Tagged Questions

0
votes
1answer
33 views

IO Completion ports: How does WSARecv() work?

Hi,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' d …
0
votes
1answer
56 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}; …
0
votes
1answer
69 views

A question on IOCP

If I want to use completion port to get information from different thread , how can I design the structure of the program?How about the one below? If I want to use a global funct …
0
votes
1answer
109 views

Using SslStream with IOCP

I have written a TCP server using the Socket class's asynchronous/IOCP methods, BeginSend()/BeginRead()/etc. I would like to add SSL capability using SslStream, but from the inter …
0
votes
2answers
166 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 thi …
0
votes
0answers
99 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 …
1
vote
3answers
288 views

Delphi TClientSocket replacement using winsock2 and IOCP?

Is there such a thing? It needs to be asynchronous (no Indy).
0
votes
1answer
258 views

Overlapped I/O: How to wake a thread on a completion port event or a normal event?

I want to use a thread pool to both initiate/cancel overlapped read operations -- using ReadFile() and CancelIo() respectively -- as well as handling any completion port events whe …
4
votes
4answers
207 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); OVERL …
0
votes
1answer
89 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 …
1
vote
1answer
160 views

Serial Comms via IOCP

Is it possible to use IO Completion Ports for Serial I/O? According to Windows via C/C++ it is alluded to that it is possible, and does give an example of using IOCP with physical …
1
vote
1answer
265 views

IOCP in custom thread pool

I'm currently searching the internet for a custom thread pool implementation. I found an implementation which uses IOCP's. I'm wondering what the benefit is, of using them? Do they …
0
votes
1answer
124 views

I/O Completion Port, How to free Per Socket Context and Per I/O Context?

I'm using IOCP on UDP socket, and the UDP socket may be closed in another thread. So, how can I free Per Socket Context and Per I/O Context which associated with SOCKET safely? Wh …
2
votes
1answer
234 views

Mono and C# IOCP: Is it a good idea?

Hi, I'm porting a c++ app to c# that uses IOCP on it's server. Can mono handle IOCP as well as windows? will i get comparable performance to c++ or i should try something else? …
1
vote
1answer
258 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 …