Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
6answers
3k views

Linux and I/O completion ports?

Using winsock, you can configure sockets or seperate I/O operations to "overlap". This means that calls to perform I/O are returned immediately, while the actual operations are completed ...
6
votes
2answers
712 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. ...
5
votes
6answers
942 views

Is there a I/O completion port based component for Delphi?

I am aware of Indy, ICS, Synapse and Clever InetSuite, none of which support IOCP. Is there anything else out there? Edit: I found iocpclasses , It's written in Delphi5. Better than nothing I ...
5
votes
6answers
984 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 ...
4
votes
5answers
2k views

What's the best way to ping many network devices in parallel?

I poll a lot of devices in network (more than 300) by iterative ping. The program polls the devices sequentially, so it's slow. I'd like to enhance the speed of polling. There some ways to do this ...
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; ...
3
votes
3answers
434 views

Scalable server framework in C++

I am looking to write a server application in C++ that is meant to handle tens of thousands of clients simultaneously. It should run under Windows and Linux. I have been looking around for frameworks ...
3
votes
3answers
859 views

I/O completion port's advantages and disadvantages

Why do many people say I/O completion port is fast and nice model? What is the I/O completion port's advantages and disadvantages? I want to know some points which make faster IOCP than other ...
3
votes
3answers
273 views

Choosing a IPC solution for an event-driven application

I am currently working on a rather large single-threaded, event-based, application designed around epoll under Linux and comparable technologies under other platforms. Currently, whenever we wish two ...
3
votes
2answers
732 views

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

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? thanks
2
votes
2answers
97 views

Put several HTTP request to wait for the same I/O completion port

My application load asynchronously a big amount of information from a web service and "Application_Start". If an user request wants to use that information, and it is nor ready, the thread will be ...
2
votes
1answer
405 views

CreateFile() returns INVALID_HANDLE_VALUE but GetLastError() is ERROR_SUCCESS

I am opening a serial port using CreateFile(). I've got a testcase (too complicated to redistribute) that consistently causes CreateFile() to return INVALID_HANDLE_VALUE and GetLastError() to return ...
2
votes
1answer
211 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
287 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 ...
2
votes
4answers
1k views

Delphi TClientSocket replacement using winsock2 and IOCP?

Is there such a thing? It needs to be asynchronous (no Indy).
2
votes
1answer
606 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 files showing work ...
1
vote
1answer
87 views

CloseHandle() returns before the serial port is actually closed

I'm pulling my hair trying to figure out when a serial port finishes closing so I can reopen it. It turns out that CloseHandle() returns before the port is actually unlocked. I am opening a serial ...
1
vote
1answer
66 views

IOCP CompletionKey for Boost::Asio?

I'm creating a TCP server using Boost::Asio. I have to track the packet time for each client. When an IO operation is completed, I can easily identify each client using the completion keys returned by ...
1
vote
1answer
78 views

Non-blocking socket connect on Windows without ConnectEx

I need to initiate 1000's of client connections in a single process, the key limitation I need to work around is the driver does not support ConnectEx, so I cannot have a pure IOCP solution. My ...
1
vote
1answer
187 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
127 views

Is it necessary to set hEvent on the OVERLAPPED structure when doing I/O completion ports?

I'm using I/O completion ports on Windows for serial port communication (we will potentially have lots and lots of serial port usage). I've done the usual, creating the IOCP, spinning up the I/O ...
1
vote
2answers
449 views

.NET IOCP ThreadPool overhead with async UDP operations

I have developed a VoIP media server which exchanges RTP packets with remote SIP endpoints. It needs to scale well - and while I was initially concerned that my C# implementation would not come close ...
1
vote
1answer
329 views

Test for I/O Completion Port Support

I found the following code in the code of an SMTP mail server (LumiSoft Mail Server). According to the method's name, it test whether the platform supports I/O Completion Ports. /// <summary> ...
1
vote
4answers
139 views

Can I/O completion port help with database instead of File writes?

I am reading up on IOCP, and from what I understand so far, the asynchronous writes only apply in the context of writing to Files. By "Files", I don't mean just disk file, but "File" type output ...
1
vote
2answers
420 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
228 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 ...
1
vote
1answer
371 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
498 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
688 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 ...
1
vote
2answers
1k 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 provide work ...
0
votes
1answer
71 views

AcceptEx and OpenSSL

I would like to know the proper way to handle a new connection from a client using AcceptEx and OpenSSL. I have a perfectly good working server that uses AcceptEx with IO Completion Ports over ...
0
votes
1answer
63 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
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
0answers
97 views

Problem with wsarecv while using with IOCP

I am new to IOCP and struggling with this for last few weeks. I have pasted some core part of my code below related to IOCP.This may not be executed perfectly as I clipped some part to make it easy to ...
0
votes
2answers
152 views

Resources To learn IOCP On Windows

I recently was made aware of this thing called IOCP on windows and i began searching for more information on it but i couldn't find anything up to date (most of the examples were on codeproject almost ...
0
votes
3answers
523 views

Is Node.js production ready on Windows?

In new 0.5.1 branch, there is an official Windows executable of Node.js. Linux version of Node.js uses established libraries such as v8, libev, libeio. Since libev and libeio is for *NIX platforms; ...
0
votes
3answers
260 views

Removing a handle from a I/O completion port and other questions about IOCP

The CreateIoCompletionPort function allows the creation of a new I/O completion port and the registration of file handles to an existing I/O completion port. Then, I can use any function, like a recv ...
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
261 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
2answers
161 views

Is it possible to not receive a completion for a WSASend call?

Like the title says, is it possible for a successful WSASend call on a socket associated with an I/O completion port to not post a completion for any reason other than the thread ending? I have a ...
0
votes
2answers
196 views

What's the maximum connects can IOCP accept and hold

I do some IOCP Server and Client test. The IOCP Server accept the clients' connects and do nothing but recv datapackets from clients. The clients connect the server and send datapackets to server in ...
0
votes
3answers
329 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
1answer
402 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
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
145 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
4answers
625 views

How to find out when CancelIo() is done?

UPDATE: CancelIo() works fine. I misunderstood my code. See the accepted answer for more details. CancelIo() is supposed to cancel all pending I/O operations associated with the calling thread. In my ...

1 2