CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: wolfulus

Search: Search took 0.04 seconds.

  1. Re: Stack Overflow happening but no exception thrown

    its a recursive function, never ends, this will blow up the stack

    nvm: i missed the part that you said you wanted to make it blow up :P
  2. Replies
    4
    Views
    991

    Re: Cannot accept more clients using sockets

    this will help you:
    http://www.codeproject.com/KB/IP/winsockintro03.aspx

    but, keep in mind: a lot of clients connected will create a lot of threads, which can be a little problem. once you have...
  3. Replies
    19
    Views
    1,812

    Re: Inserting element in array

    void makeitwork ( unsigned char* input, unsigned char* output, unsigned inputlength )
    {
    // index of the new array
    unsigned int tempindex = 0;
    // alloc new array with the new bytes
    unsigned...
  4. Re: class size changes when inheriting abstract ones...

    someone? ^^
  5. Re: Good book that emphasizes vc++ compiler itself?

    the most complete reference you can get from MSDN... books just helps if you are searching for especific things... like "multithreading", "network programming", and they will (almost 80% of the...
  6. Thread: Chat Server

    by wolfulus
    Replies
    1
    Views
    4,119

    Re: Chat Server

    IOCP helps alot on that, and, sometimes, large-scale servers manage all those clients with many servers, not just one...

    its like a gaming server... if the game gets too big, like a MMORPG server,...
  7. Replies
    4
    Views
    991

    Re: Cannot accept more clients using sockets

    you are using a unique loop for receiving data from the clients... look at the code, accept() is called once...
    first, you will need to create an array of SOCKETS to store client connections... ...
  8. Re: class size changes when inheriting abstract ones...

    thank you guys, i rewrited it, now the "final" idea implementation:

    ----------------------------



    #include "stdafx.h"
    #include <windows.h>

    #include <iostream>
  9. Re: class size changes when inheriting abstract ones...

    thanks for the comments guys... i'm really new to c++... so there is there any other method to know the size to use? coz it must be sent in the packet for splitting data that comes to the server (or...
  10. class size changes when inheriting abstract ones...

    Hello guys, I'm writing a network library to use in the future on my projects, but I got something that I don't know why is happens...
    ...
Results 1 to 10 of 10





Click Here to Expand Forum to Full Width

Featured