Overlapped Connect
-
I'm working on a Winsock application using I/O completion ports. I can't find any flavor of connect() that uses OVERLAPPED I/O. Am I missing something? Any clever work-arounds? -------- There are 10 types of people in this world. Those who know binary and those who don't.
-
I'm working on a Winsock application using I/O completion ports. I can't find any flavor of connect() that uses OVERLAPPED I/O. Am I missing something? Any clever work-arounds? -------- There are 10 types of people in this world. Those who know binary and those who don't.
-
As far as I can tell, WSAConnect doesn't use OVERLAPPED, so it doesn't play that well with an I/O completion port. -------- There are 10 types of people in this world. Those who know binary and those who don't.
-
As far as I can tell, WSAConnect doesn't use OVERLAPPED, so it doesn't play that well with an I/O completion port. -------- There are 10 types of people in this world. Those who know binary and those who don't.
-
Thanks. I see it requires XP or later, but that might be acceptable. At first I wondered how I could have missed it, but then when I see where it was hidden in the Oct 2001 MSDN library (I'm still using VC6) I won't beat myself up too badly. -------- There are 10 types of people in this world. Those who know binary and those who don't.