Click here to Skip to main content
15,914,071 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: zip format using md5 rather than crc32? Pin
Seungbeom Roh30-Jan-07 16:22
Seungbeom Roh30-Jan-07 16:22 
GeneralRe: zip format using md5 rather than crc32? Pin
Hamid_RT31-Jan-07 19:58
Hamid_RT31-Jan-07 19:58 
QuestionOne last IOCP question :) Pin
Polity4h30-Jan-07 11:51
Polity4h30-Jan-07 11:51 
AnswerRe: One last IOCP question :) Pin
Mark Salsbery30-Jan-07 12:21
Mark Salsbery30-Jan-07 12:21 
GeneralRe: One last IOCP question :) Pin
Polity4h30-Jan-07 12:55
Polity4h30-Jan-07 12:55 
GeneralRe: One last IOCP question :) Pin
Mark Salsbery30-Jan-07 13:42
Mark Salsbery30-Jan-07 13:42 
GeneralRe: One last IOCP question :) Pin
Polity4h30-Jan-07 14:04
Polity4h30-Jan-07 14:04 
GeneralRe: One last IOCP question :) Pin
Mark Salsbery30-Jan-07 14:39
Mark Salsbery30-Jan-07 14:39 
Polity4h wrote:
to a few packets of 1500 kb


1500KB? That's too big for a UDP datagram Smile | :)

All I can think of is check all your send and receive counts on both ends in the debugger.
With UDP you should be receiving complete datagrams the size that were sent (providing they
arrive successfully - UDP doesn't guarantee that).

Why do you use UDP? Have you allowed for messages that don't make it?

Polity4h wrote:
Is there any way to close a overlapped operation because i need to reuse the overlapped structures, and that means that if there is a timeout check function somewhere in my application just running once in a while over all the overlapped operations looking if they arent timed out...


The only way I know is to close the socket. Any pending queued overlapped operations on the
socket will be released by GetQueuedCompletionStatus(). If you want to check periodically then
you could use a timer, the dwMilliseconds parameter to GetQueuedCompletionStatus(), or some other
method. Close the socket after the appropriate period of inactivity.
GeneralRe: One last IOCP question :) Pin
Mark Salsbery30-Jan-07 14:48
Mark Salsbery30-Jan-07 14:48 
GeneralRe: One last IOCP question :) Pin
Polity4h1-Feb-07 9:30
Polity4h1-Feb-07 9:30 
GeneralRe: One last IOCP question :) Pin
Mark Salsbery1-Feb-07 10:19
Mark Salsbery1-Feb-07 10:19 
GeneralRe: One last IOCP question :) Pin
Polity4h1-Feb-07 11:08
Polity4h1-Feb-07 11:08 
GeneralRe: One last IOCP question :) Pin
Mark Salsbery1-Feb-07 11:12
Mark Salsbery1-Feb-07 11:12 
GeneralRe: One last IOCP question :) Pin
Polity4h1-Feb-07 11:31
Polity4h1-Feb-07 11:31 
GeneralRe: One last IOCP question :) Pin
Mark Salsbery1-Feb-07 11:53
Mark Salsbery1-Feb-07 11:53 
GeneralRe: One last IOCP question :) Pin
Polity4h1-Feb-07 11:54
Polity4h1-Feb-07 11:54 
GeneralRe: One last IOCP question :) Pin
Mark Salsbery1-Feb-07 11:58
Mark Salsbery1-Feb-07 11:58 
GeneralRe: One last IOCP question :) Pin
Polity4h1-Feb-07 12:05
Polity4h1-Feb-07 12:05 
GeneralRe: One last IOCP question :) Pin
Mark Salsbery1-Feb-07 12:12
Mark Salsbery1-Feb-07 12:12 
Questiondisappearing check boxes Pin
maladuk30-Jan-07 11:13
maladuk30-Jan-07 11:13 
AnswerRe: disappearing check boxes Pin
James R. Twine30-Jan-07 11:23
James R. Twine30-Jan-07 11:23 
GeneralRe: disappearing check boxes Pin
maladuk30-Jan-07 23:31
maladuk30-Jan-07 23:31 
AnswerRe: disappearing check boxes Pin
PJ Arends30-Jan-07 15:51
professionalPJ Arends30-Jan-07 15:51 
GeneralRe: disappearing check boxes Pin
maladuk30-Jan-07 22:40
maladuk30-Jan-07 22:40 
QuestionRe: disappearing check boxes Pin
prasad_som30-Jan-07 17:19
prasad_som30-Jan-07 17:19 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.