Search:

Type: Posts; User: Teegtahn

Search: Search took 0.01 seconds.

  1. Replies
    8
    Views
    1,629

    Oi. This is embarassing, the problem [seems] to...

    Oi. This is embarassing, the problem [seems] to be resolved. By some bizzare twist of logic the code I had written was *ahem* poorly interacting with other code I wrote, causing the socket to open...
  2. Replies
    8
    Views
    1,629

    Sorry, I should have made it clear that I am not...

    Sorry, I should have made it clear that I am not null terminating the string; I don't think recv() would write past the 1024 limit I specified? I do not have much experience with Sockets; The rest of...
  3. Replies
    8
    Views
    1,629

    I am telling the socket that no more data is to...

    I am telling the socket that no more data is to be written to it.
    shutdown Function (Windows)


    One's a fixed array 1024, the other is a char* pointer of variable length depending on the length...
  4. Replies
    8
    Views
    1,629

    Blocking Sockets Issue

    Hey there,
    I've had this problem for a little bit, and it is now time to track it down, as its become obscenely troublesome.

    Premise:
    I am using sockets under WinSock2 to retrieve an XML page...
  5. Replies
    3
    Views
    934

    Resolved. (and I've bookmarked that FAQ) Thanks...

    Resolved. (and I've bookmarked that FAQ) Thanks guys.
  6. Replies
    3
    Views
    934

    Templates & Linkers

    I'm self-teaching Templates, and I think I've gotten a grasp on the concept (doesn't seem too, too tricky) but the problem lies when I try to compile, I'm trying this, that and the other thing, and...
  7. Replies
    4
    Views
    2,545

    Just a shift in memory? Seems simple enough :) ...

    Just a shift in memory? Seems simple enough :)

    Thanks guys.
  8. Replies
    4
    Views
    2,545

    Resolved, thanks. -- Still curious though, why...

    Resolved, thanks. -- Still curious though, why would the printf(""); make it work?
  9. Replies
    4
    Views
    2,545

    C++ (char *) problem?

    I've been slowly teaching myself C++ and haven't gotten around to the String class just yet. I'm working under Vista Business (laugh if you must) and Visual Studio 2005 (again).

    When attempting to...
  10. Replies
    14
    Views
    23,170

    after I finish reading the fifo... does it clear...

    after I finish reading the fifo... does it clear itself? or am I looking at a whole new set of problems trying to read from this thing on a continous basis?

    Edit:
    I've been unconditionally...
  11. Replies
    14
    Views
    23,170

    not in one read cycle... read_fifo opens and...

    not in one read cycle...

    read_fifo opens and closes it once during it's run, but after it's read, the fifo is closed, the data is preserved, processed and the system starts again... it's running...
  12. Replies
    14
    Views
    23,170

    my read statements no longer read from the pipe...

    my read statements no longer read from the pipe correctly, client returns a Broken Pipe error, and the server returns a (null) string...

    I'm investigating myself, but it's no longer blocking.
    ...
  13. Replies
    14
    Views
    23,170

    I'd be less irritated if I didn't really need...

    I'd be less irritated if I didn't really need this, but it's still blocking, I've changed the code to the following (for the read_fifo)




    FIFO_DATA *read_fifo( char filename[256] )
    {
    ...
  14. Replies
    14
    Views
    23,170

    I'm using the functions in this order (example...

    I'm using the functions in this order (example with limited details to prevent confusion)


    main ( )
    {
    initalize_fifo( )
    for ( ;; )
    {
    handle_fifo( );
    }
  15. Replies
    14
    Views
    23,170

    Nonblocking FIFO

    Greetings,
    Simple issue, but my own research has turned up nothing.

    I'm attempting to create an intra-process communication system to create a communication & control program for a server daemon...
Results 1 to 15 of 16