An I/O Completion Port (IOCP) provides a way to execute asynchronous I/O operations efficiently on Windows.

learn more… | top users | synonyms

0
votes
0answers
49 views

Losing events using IOCP Sockets on high load

For work, I need to write a server able to handle up to 8000/10000 active connections using TCP as protocol. I've used IOCP before, but I'm getting a weird situation where the server starts to lose ...
0
votes
0answers
60 views

Do .NET 4.5 Server-Side WebSockets use IOCP?

Does anyone know if AspNetWebSocket (introduced in .NET Framework 4.5) utilizes IOCP for handling requests instead of one thread per Connection?
0
votes
0answers
174 views

UDP server and receive buffer (Windows, IOCP)

I want to create a UDP server which can handle a few hundred clients. I read that it's still best to use only one socket and port on server side. So I want to call one WSARecvFrom for every client on ...
1
vote
2answers
81 views

IOCP loop termination may cause memory leaks? How to close IOCP loop gracefully

I have the classic IOCP callback that dequeues i/o pending requests, process them, and deallocate them, in this way: struct MyIoRequest { OVERLAPPED o; /* ... other params ... */ }; bool ...
0
votes
0answers
64 views

IOCP and non-blocking IO

I have 3rd party library that uses non-blocking send, recv (in Windows), so I can use libevent (or libev) with select backend to event loop. Is there easy way to use IOCP backend (libevent2, libuv)? ...
0
votes
0answers
55 views

Pros and Cons of preallocating a large byte array for sockets, using the SendAsync/ReceiveAsync paradigm

The way the SendAsync/ReceiveAsync paradigm works is you have SocketAsyncEventArgs objects, which handle the state for an operation. Importantly, this includes a .UserToken object which can be used to ...
0
votes
1answer
47 views

Active Nodes in Subnet (SendARP)

All, I am trying to find active nodes in my Subnet. For that I am sending ARP to all nodes in subnet. Is this the right way to do this ? If this is the right way, Is there any good way to handle ...
1
vote
1answer
85 views

IOCP - post overlapped or read packet?

I'm supposed to read the first 9 bytes which should include the protocol and incoming size of the data packet. When the completion port returns with the 9 bytes which is better to do? (performance / ...
1
vote
0answers
50 views

I/O completion ports closing a handle cause reads to complete

I have iocp running and working (mostly) -- but should calling CloseHandle() on a handle cause it to complete? e.g., I've called ReadFile() and it's now waiting for input to read. At another point ...
0
votes
0answers
64 views

I/O completion ports and stdout processing

I'm using I/O completion ports for a process management library (yes, there's a reason for this). You can find the source for what I'm talking about here: ...
0
votes
1answer
140 views

GetQueuedCompletionStatusEx(), ReadDirectoryChangesW()

I am using GetQueuedCompletionStatusEx() and ReadDirectoryChangesW() to try to receive notifications of changes to multiple filesystem hierarchies. I noticed that I would receive completion packets ...
1
vote
0answers
59 views

IOCP assync sock request

I'm walking through to what was been a hard college work. It is meant that we make a asynchronous http request with the usage of winsocks and IOCP. I've accomplished to bind asynchronous socket and ...
0
votes
0answers
64 views

IOCP thread lock [closed]

Well i code a IOCP thread worker for handle incoming messages, the problem is when a message comes 2 threads are trying to process the same message, so one executes WSARecv first than the other, this ...
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 ...
3
votes
3answers
316 views

can the infamous `ERROR_NETNAME_DELETED' error be considered an error at all?

I'm writing a tcp server in Windows NT using completion ports to exploit asynchronous I/O. I have a TcpSocket class, a TcpServer class and some (virtual functions) callbacks to call when an I/O ...
0
votes
2answers
138 views

Failed DisconnectEx/AcceptEx still schedules an overlapped IOCP event

Windows 8, x64. Using overlapped Windows sockets Api with IOCP. Noticed an unexpected behavior with sockets: For example, a call to DisconnectEx returns an error WSAENOTCONN but later I receive an ...
0
votes
1answer
207 views

IOCP thread processing

I am making an IOCP server in C#, invoking win apis. I have 1 accept thread connection and worker threads depending of CPU cores. My problem is, i am getting 2 threads trying to process the same data ...
4
votes
1answer
182 views

Does an IO completetion port spawn a new thread before or after the completion port has something to report?

I am a bit confused as to what actually happens when an IO completion port completes. I presume that the Win API allows access to an IOCP queue that somehow is able to queue (or stack) a callback ...
0
votes
1answer
101 views

Where can I get the codes about iocp in source code of asio?

I wanted to learn how to use iocp perfectly, but I couldn't find the function CreateIoCompletionPort. I explored all the files of asio, and only found few .cpp files! How can/should I explore the ...
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 ...
1
vote
1answer
182 views

windows xp vs 7, what's difference UDP accepting rules

When I get a UDP packet (especially, rtp), I have a different phenomenon. It happens by difference of windows version at windows 7 professional K. UDP packet coming normally without open udp port on ...
1
vote
0answers
360 views

WinSock2 IOCP WSARecv GetQueuedCompletionStatus: data (automatically) ends up in char*buffer, not WSABUF.buf…why?

While debugging, when WSARecv is called, I supply the function with the address of the PerIoData->WSABUF structure. This should assign the sent data to the WSABUF.buf char* array, which it seems to. ...
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 ...
1
vote
2answers
226 views

C++ IOCP server container information

I have been passing a few ideas around in my head about how to actually contain large amounts of connections using an IO type of architecture while maintaining KISS. Through examples on the web, it ...
0
votes
2answers
259 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 ...
3
votes
2answers
106 views

How to debug code that interacts with low level APIs (like I/O completion ports)?

I wrote a console application that uses Socket's *Async set of methods and it crashes time to time. It doesn't show me where it threw the exception like synchronized code, console just shuts down and ...
4
votes
1answer
402 views

SocketAsyncEventArgs.Completed doesn't fire in Windows 8

When I compile this code on a machine with Windows 7 Ultimate and .NET 4 installed, it works just fine but when I try it on one with Windows 8 RTM and .NET 4.5 installed, Complete event never fires. ...
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 ...
1
vote
1answer
78 views

Can I use std::shared_ptr to wrap per I/O data in IOCP?

I'm working on a client application that uses IOCP. My per I/O data class is derived from WSAOVERLAPPED: class IoRequest : public WSAOVERLAPPED { ... }; And when performing asynchronous I/O ...
1
vote
1answer
355 views

When using IOCP, should I set WSAOVERLAPPED's hEvent to NULL or to a valid handle to a WSAEVENT object?

According to MSDN: hEvent: If an overlapped I/O operation is issued without an I/O completion routine (the operation's lpCompletionRoutine parameter is set to null), then this parameter should ...
1
vote
1answer
186 views

Placing calling thread in an alertable wait state

My main thread creates multiple I/O worker threads. I then initiate an I/O request from my main thread by doing: { ... IoRequest *pIoRequest = new IoRequest(m_socket); ...
0
votes
1answer
189 views

IOCP and overwritten buffer

Well i make a IOCP for handling client connections with the following details: - Threads = (CPU cores * 2) - Assigning an completion port to each socket - Accessing the socket context by Client ...
0
votes
1answer
172 views

How to properly close worker threads created for using IOCP

Here is a code snippet from Network Programming for Microsoft Windows: ... // Determine how many processors are on the system. GetSystemInfo(&SystemInfo); // Create worker threads based on the ...
2
votes
1answer
85 views

How to deal with a case where multiple operations are posted on the same socket

I am developing a client application that manages one socket. I am using IOCP to manage asynchronous I/O. This is a quote from a networking programming book: All overlapped operations are ...
1
vote
1answer
181 views

What is the maximum number of bytes WSARecv can receive at one time?

I'm using std::vector to represent a buffer in my per IO data structure: struct PerIoData { WSAOVERLAPPED m_overlapped; SOCKET m_socket; WSABUF m_wsaBuf; std::vector<BYTE> ...
0
votes
1answer
448 views

C++ CreateIoCompletionPort on new socket

EDIT: I am guessing the problem is I have to associate the OVERLAPPED or WSAOVERLAPPED in the container with my completion port. Is that correct? I can get IO completions when someone connects to my ...
0
votes
1answer
244 views

How to structure worker thread logic for IOCP

I'm creating a client program that communicates with a device connected to my PC via LAN. A typical communication between my program and the device is as follows: Program -> Device 1616000D 08 ...
8
votes
6answers
2k views

High-performance, scalable UDP servers?

I'm pretty familiar with what Input/Output Completion Ports are for when it comes to TCP. But what, if I am for example coding a FPS game, or anything where need for low latency can be a deal ...
0
votes
2answers
353 views

Use of per IO data with IOCP based client

I'm trying to create an IOCP TCP client and my code looks as follows: TCPClient.h: #pragma once typedef struct { WSAOVERLAPPED Overlapped; SOCKET Socket; WSABUF wsaBuf; char ...
0
votes
1answer
84 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 ...
1
vote
2answers
361 views

How to detect disconnection (RST/FIN) using Windows IOCP?

How can I find out whether TCP connection was torn down by the peer (by sending RST packet or similar) using Windows IOCP API? Specifically, I can't send or receive any data -- there's no overlapped ...
1
vote
1answer
399 views

IOCP GetQueuedCompletionStatus getting queued

EDIT I decided to make a simple C++ server to connect to it, and to my surprise, the IOCP server gets triggered for every new connection. The problem seems to be with websockets. Is there any reason ...
1
vote
1answer
73 views

Associate several files to the same io completion port, while keeping file stream order c#

I need to write objects, sent to me from another process, to several files on my disk. Each object comes with fileID (the name of file to be written in to) and chunks of data. I would like to use IO ...
3
votes
2answers
219 views

How can I wait on an I/O completion port and an event at the same time?

Is there any possible way to achieve this? For instance, I have an I/O completion port that 10 worker threads are pulling tasks out of. Each task is associated with an object. Some objects cannot be ...
0
votes
1answer
139 views

Connecting to IOCP server in Java (Android)

I'd like to make an Online Game with Android. I'm planning to make Server with IOCP model via C++. This should work fine, the problem is the client. IOCP client example in C++ uses WSASyncselect or ...
1
vote
1answer
129 views

Visual C++ program crashed, but no dumpfile generated. why?

I have a very strange situation. I'm running IOCP Server Program programmed by Visual studio 2010 in C++. It uses 'minidump', so When there is a logical bug like pointer misuse, Program crashes with ...
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 ...
0
votes
0answers
107 views

Should I re-invoke WSARecv if CancelIo is called?

There is a overlapped socket. WSARecv is invoked to try to get data from peer and waiting for IOCP's notifaction At the same time, use WSASend to send data to peer, for some reason WSASend return ...
0
votes
1answer
295 views

Windows network IOCP scalability over multiple cores

The behavior is the following: e.g. one server worker with 200 sockets handles 100K echoes per second. Starting another server worker on the same port (with the same number of sockets or double less ...
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 ...

1 2 3