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

C / C++ / MFC

 
GeneralRe: CDateTimeCtrl and CTime Pin
Prem Kumar4-Mar-02 3:11
Prem Kumar4-Mar-02 3:11 
GeneralRe: CDateTimeCtrl and CTime Pin
Tomasz Sowinski4-Mar-02 3:26
Tomasz Sowinski4-Mar-02 3:26 
GeneralRe: CDateTimeCtrl and CTime Pin
Prem Kumar4-Mar-02 3:28
Prem Kumar4-Mar-02 3:28 
GeneralRe: CDateTimeCtrl and CTime Pin
Tomasz Sowinski4-Mar-02 3:30
Tomasz Sowinski4-Mar-02 3:30 
GeneralRe: CDateTimeCtrl and CTime Pin
User 66584-Mar-02 3:43
User 66584-Mar-02 3:43 
Generalsocket backlog problem Pin
4-Mar-02 2:02
suss4-Mar-02 2:02 
GeneralRe: socket backlog problem Pin
Tim Smith4-Mar-02 2:14
Tim Smith4-Mar-02 2:14 
GeneralRe: socket backlog problem Pin
Joaquín M López Muñoz4-Mar-02 2:17
Joaquín M López Muñoz4-Mar-02 2:17 
You gain nothing by calling listen each time after accepting. The standard sequence is: listen once and then loop around accept.
Is you're having connections refused, try to speed up your accept-associated code. Your maximum rate of clients served per second is 1/t, where t is the time it takes to your app to accept a client. No backlog will improve that appart from providing some resiliance against temporary rushes. In Winsock 1.1 the maximum backlog is 5 (admittedly a little low), if you're using Winsock 2 you can set a more comfortable backlog size (though the value of SOMAXCONN for Winsock 2 is an overkill (0x7FFFFFFF), and you're better off setting something smaller than that.)

Joaquín M López Muñoz
Telefónica, Investigación y Desarrollo
GeneralCopy system registry files in win 2k Pin
4-Mar-02 1:35
suss4-Mar-02 1:35 
GeneralViewing flash files Pin
Jon Newman4-Mar-02 1:14
Jon Newman4-Mar-02 1:14 
GeneralRe: Viewing flash files Pin
benjymous4-Mar-02 2:57
benjymous4-Mar-02 2:57 
GeneralFindFirstFile & FindNextFile Pin
Mauricio Ritter4-Mar-02 1:08
Mauricio Ritter4-Mar-02 1:08 
GeneralRe: FindFirstFile & FindNextFile Pin
Tomasz Sowinski4-Mar-02 1:28
Tomasz Sowinski4-Mar-02 1:28 
GeneralRe: FindFirstFile & FindNextFile Pin
Mauricio Ritter4-Mar-02 1:42
Mauricio Ritter4-Mar-02 1:42 
GeneralContainer window for DLLs Pin
4-Mar-02 0:55
suss4-Mar-02 0:55 
GeneralRe: Container window for DLLs Pin
Tomasz Sowinski4-Mar-02 1:24
Tomasz Sowinski4-Mar-02 1:24 
GeneralRe: Container window for DLLs Pin
4-Mar-02 3:24
suss4-Mar-02 3:24 
GeneralRe: Container window for DLLs Pin
4-Mar-02 1:37
suss4-Mar-02 1:37 
QuestionSpecific device context ? Pin
Andrew Hoole4-Mar-02 0:27
Andrew Hoole4-Mar-02 0:27 
AnswerRe: Specific device context ? Pin
Tomasz Sowinski4-Mar-02 0:30
Tomasz Sowinski4-Mar-02 0:30 
GeneralRe: Specific device context ? Pin
Andrew Hoole4-Mar-02 2:12
Andrew Hoole4-Mar-02 2:12 
GeneralRe: Specific device context ? Pin
Tomasz Sowinski4-Mar-02 2:17
Tomasz Sowinski4-Mar-02 2:17 
QuestionThrowing exception on thread end ? Pin
Alwin753-Mar-02 23:49
Alwin753-Mar-02 23:49 
AnswerRe: Throwing exception on thread end ? Pin
Tomasz Sowinski3-Mar-02 23:57
Tomasz Sowinski3-Mar-02 23:57 
AnswerRe: Throwing exception on thread end ? Pin
Prem Kumar3-Mar-02 23:57
Prem Kumar3-Mar-02 23:57 

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.