Using C / C++ socket programming, and the "read(socket, buffer, BUFSIZE)" method. What exactly is the "buffer" I know that char and byte are the same thing, but does it matter how many elements the byte array has in it? Does the buffer need to be able to hold the entire message until the null character?
|
|
|||||||||
|
|
|
BUFSIZE should be equal to the size of your buffer in bytes. read() will stop reading when the buffer is full. Here is an example:
|
||||||||||
|
|
|
As always, use So, instead of doing
you really should use
Notice how you don't need parenthesis around the argument to sizeof, unless the argument is the name of a type. |
||
|
|
|
Your sockets implementation doesn't require the buffer, to be big enough, to hold the entire message for sure, but it might be convenient depending on, what You are doing. |
||
|
|
