I am using TCP/IP socket programming. I have a floating point value stored in a variable ret_val in my server code which I want to send to the client which is waiting to receive it.
How can I do it?
|
I am using TCP/IP socket programming. I have a floating point value stored in a variable ret_val in my server code which I want to send to the client which is waiting to receive it. How can I do it? |
|||||
|
|
If you know that both client and server are the same platform etc., you can simply use
As soon as your client/server are different platforms/different languages etc. you'll have to start worrying about how to portably encode the float. But for a simple approach, the above will work fine. |
|||||||
|
|
This code will work fine if both the server and client use the same platform. If the platforms are different, you will have to negotiate message sizes and endianess explicitly. |
||||
|
|
|
Use a textual representation ?
You can read that string and parse it back again with sscanf. (Maybe even make it line terminated - "%f\n" - so you'll know when the number ends.) The direct approach is to simply
In both cases you should check the return value of write and take proper action if an error occurs, or write() wrote less bytes than you told it to. |
|||
|
|