Search found 3 matches
- Wed May 08, 2013 12:33 am
- Forum: Support - RCF
- Topic: What would be the best way to go about this?
- Replies: 1
- Views: 8582
What would be the best way to go about this?
I have a project which is mainly used for remote debugging. The way it works is the client would launch a process in suspended mode, then inject the server DLL into the target process where it would then hook several Windows API functions, and then it would resume the main thread of the target proce...
- Tue May 07, 2013 12:55 am
- Forum: Support - RCF
- Topic: Waiting for client connections?
- Replies: 2
- Views: 10820
Re: Waiting for client connections?
Oh I see... I had my thoughts mixed up. For some reason I thought it ran on the same thread. But after throwing in a simple Sleep() command on the server's main thread (in place of "Wait for clients to create callback connections" ) and connecting a client to it during that time, I can confirm that ...
- Mon May 06, 2013 9:51 pm
- Forum: Support - RCF
- Topic: Waiting for client connections?
- Replies: 2
- Views: 10820
Waiting for client connections?
While following the tutorial code posted here , I noticed the section in the server code which says "Wait for clients to create callback connections" does not provide any examples of how this can be achieved. I assume I need to create some sort of loop which actively checks for a connection, but how...