Click here to Skip to main content
15,891,993 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
Conditional accept blocks the accept() for 2-3 seconds even if the connection is ready.
I can't remove the conditional accept (3rd party application) and I'm sure that the connection is ready.
What can be a solution to that?

Thanks in advance.
AR
Posted
Updated 2-Dec-10 3:13am
v2
Comments
fjdiewornncalwe 2-Dec-10 7:27am    
What 3rd party application? Source Code which is problematic? It will be very difficult to answer without more information. Cheers.
Alexeirob 2-Dec-10 9:01am    
It's a Source Code which is problematic, which sets the conditional accept on every socket.

1 solution

Please describe it with a few line of code.

As, I have understood till now please try out following:

boolean blvar = accept();

if(blvar == true)
{
// U R code
}
else
{
// U R code
}
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900