Search:

Type: Posts; User: frozt

Search: Search took 0.01 seconds.

  1. Replies
    3
    Views
    2,465

    fork() is a linux call that make a duplicate of...

    fork() is a linux call that make a duplicate of the current process. So this would make a separate process to handle the new socket while the current one continues listening. fork() is not available...
  2. Replies
    11
    Views
    15,591

    Not exactly something for beginners, but I'm...

    Not exactly something for beginners, but I'm attempting to make an IRC daemon. Just try making your own equivalent of programs you often use. Then you can add features to it that the original program...
  3. Replies
    0
    Views
    1,505

    Something similar to novell

    Hello, I am looking to make something similar to Novell (appearance-wise, no networking involved) to use as a login system for my computer. I want to have some accounts that have a regular windows...
  4. Replies
    2
    Views
    2,696

    You can access networks and the internet from...

    You can access networks and the internet from within a c++ program using sockets, or winsock if you're on windows. If you know c++ well enough, I suggest googling up Beej's Network Guide and...
  5. Replies
    8
    Views
    1,341

    thanks for the help

    thanks for the help
  6. Replies
    8
    Views
    1,341

    i can't find ioctrlsocket anywhere in msdn or...

    i can't find ioctrlsocket anywhere in msdn or google. could you post an example of how to use this?
  7. Replies
    8
    Views
    1,341

    thank you, that worked exactly as i needed it...

    thank you, that worked exactly as i needed it too. the last problem now is, is there a way to peek into the recieve buffer for my blocking socket to see if a message is in the buffer without having...
  8. Replies
    8
    Views
    1,341

    WinXP using Dev-c++

    WinXP using Dev-c++
  9. Replies
    8
    Views
    1,341

    printing to cout while blocking for getch()?

    I am attempting to make a simple telnet-like program in c++. What I need to know is: Is there a way to print out text coming from recv() over a socket while waiting for getch() to return?
Results 1 to 9 of 9