Click here to Skip to main content
15,921,371 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: hooking Pin
John R. Shaw27-Nov-04 17:26
John R. Shaw27-Nov-04 17:26 
GeneralRe: hooking Pin
Roger Allen29-Nov-04 2:34
Roger Allen29-Nov-04 2:34 
QuestionEz ? Pin
BaldwinMartin27-Nov-04 11:07
BaldwinMartin27-Nov-04 11:07 
AnswerRe: Ez ? Pin
John R. Shaw27-Nov-04 17:04
John R. Shaw27-Nov-04 17:04 
GeneralWinsock Problem/Question Pin
pshopaddict27-Nov-04 8:18
susspshopaddict27-Nov-04 8:18 
GeneralRe: Winsock Problem/Question Pin
John R. Shaw27-Nov-04 18:30
John R. Shaw27-Nov-04 18:30 
GeneralRe: Winsock Problem/Question Pin
pshopaddict27-Nov-04 20:10
susspshopaddict27-Nov-04 20:10 
GeneralRe: Winsock Problem/Question Pin
Anders Molin28-Nov-04 6:22
professionalAnders Molin28-Nov-04 6:22 
What you try to do is implement yur own homemade connection pool, not an easy task if you are new to working with sockets.

The easiest way to make a program, like what it looks like you are doing, is using blocking sockets and use a new thread for each connection. When a client disconnect from the socket you just close it and ends the thread.
When a new client connect, you just spawn a new thread and talk to the client from that thread...

More advanced ways to do it (and faster and better) is to use async sockets...

Take a look at all the articles here on CP, there are plenty both simple samples and more advanced ones...

- Anders

My Photos

WDevs - The worlds first DSP, free blog space, email and more. Now also with forums Smile | :)


GeneralRe: Winsock Problem/Question Pin
John R. Shaw28-Nov-04 8:34
John R. Shaw28-Nov-04 8:34 
GeneralRe: Winsock Problem/Question Pin
pshopaddict29-Nov-04 5:21
susspshopaddict29-Nov-04 5:21 
Questionhow to run .exe with .dll Pin
Member 154670927-Nov-04 6:58
Member 154670927-Nov-04 6:58 
AnswerRe: how to run .exe with .dll Pin
gamitech27-Nov-04 11:02
gamitech27-Nov-04 11:02 
QuestionMDI VC++, How to pass parameters to view? Pin
wwwrabbit127-Nov-04 6:08
susswwwrabbit127-Nov-04 6:08 
AnswerRe: MDI VC++, How to pass parameters to view? Pin
John R. Shaw27-Nov-04 6:55
John R. Shaw27-Nov-04 6:55 
GeneralRe: MDI VC++, How to pass parameters to view? Pin
david_gilmour27-Nov-04 13:05
david_gilmour27-Nov-04 13:05 
GeneralRe: MDI VC++, How to pass parameters to view? Pin
John R. Shaw27-Nov-04 16:53
John R. Shaw27-Nov-04 16:53 
QuestionHow can a DLL execute a function of the main app? Pin
Dominik Reichl27-Nov-04 5:22
Dominik Reichl27-Nov-04 5:22 
AnswerRe: How can a DLL execute a function of the main app? Pin
peterchen27-Nov-04 5:47
peterchen27-Nov-04 5:47 
General? Re: How can a DLL execute a function of the main app? ? Pin
Dominik Reichl27-Nov-04 5:56
Dominik Reichl27-Nov-04 5:56 
GeneralRe: ? Re: How can a DLL execute a function of the main app? ? Pin
John R. Shaw27-Nov-04 19:04
John R. Shaw27-Nov-04 19:04 
General? Re: ? Re: How can a DLL execute a function of the main app? ? ? Pin
Dominik Reichl27-Nov-04 23:00
Dominik Reichl27-Nov-04 23:00 
GeneralRe: ? Re: ? Re: How can a DLL execute a function of the main app? ? ? Pin
Neville Franks28-Nov-04 0:43
Neville Franks28-Nov-04 0:43 
GeneralRe: ? Re: ? Re: How can a DLL execute a function of the main app? ? ? Pin
Dominik Reichl28-Nov-04 1:50
Dominik Reichl28-Nov-04 1:50 
GeneralRe: ? Re: ? Re: How can a DLL execute a function of the main app? ? ? Pin
John R. Shaw28-Nov-04 8:08
John R. Shaw28-Nov-04 8:08 
GeneralRe: ? Re: ? Re: How can a DLL execute a function of the main app? ? ? Pin
Neville Franks28-Nov-04 11:16
Neville Franks28-Nov-04 11:16 

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.