in reply to Client writing

Before designing your program you will need to answer some questions: Each of these questions will have an impact on your design. You'll need a different type of client for TCP vs. UDP. You'll need to unpack binary numbers. You'll need to unpack binary numbers with a or A depending on length if the numbers are in NBO.

HTH, --traveler

Replies are listed 'Best First'.
Re: Re: Client writing
by neodymium (Initiate) on Oct 22, 2001 at 14:28 UTC
    Is the server TCP or UDP?
    > the data will be TCP SOCK-STREAM

    Are the data sent as ascii or binary integers?
    > the data will be binary integers

    Network Byte Order?
    > the ints will be recieved in NBO must be multiplied
    > together and then the answer sent back in NBO

    16, 32, or 64 integers?
    > ummm.....eheh i don't know would it make a difference?