vote up 3 vote down star

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?

flag

Is this null character sent by the sender of Your mesasage? – Maciej H Sep 27 '08 at 7:49
No, unfortunately I must append it at the end of the expected payload – Heat Miser Oct 21 '08 at 19:31
Do You know the size of the message, or the end marked somehow? – Maciej H Oct 23 '08 at 16:16
That is a good point, I should know it because it is sent as part of the HTTP header – Heat Miser Oct 25 '08 at 20:03

3 Answers

vote up 8 vote down check

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:

#define MY_BUFFER_SIZE 1024

char mybuffer[MY_BUFFER_SIZE];
int nBytes = read(sck, mybuffer, MY_BUFFER_SIZE);
link|flag
Thanks, but that only partially answers my question. I guess what I am after is what happens if the stream to be read is larger than the buffer? – Heat Miser Sep 27 '08 at 6:36
Heat Miser: You keep reading until read() returns 0. – Chris Jester-Young Sep 27 '08 at 6:37
Sorry, that wasn't very well phrased. I meant: you have to do your reads in a loop. Each time through the loop, you process what's in the buffer (even if only to append its content to a string). The loop finishes when read() returns 0. – Chris Jester-Young Sep 27 '08 at 6:38
@Chris Jester-Young thanks, it makes sense now. – Heat Miser Sep 27 '08 at 6:49
CJY is right, and if you're reading from a stream socket you have to do it in a loop even if the buffer is big enough for the message, because you won't necessarily get all the data in one go. Reading a datagram of known size might be an exception, I don't remember. – Steve Jessop Sep 27 '08 at 12:06
vote up 1 vote down

As always, use sizeof when you have the chance. Using the built-in operator sizeof, you ask the compiler to compute the size of a variable, rather than specify it yourself. This reduces the risk of introducing bugs when the size of the actual variable is different from what you think.

So, instead of doing

#define BUFSIZE 1500
char buffer[BUFSIZE];
int n = read(sock, buffer, BUFSIZE);

you really should use

char buffer[1500];
int n = read(sock, buffer, sizeof buffer);

Notice how you don't need parenthesis around the argument to sizeof, unless the argument is the name of a type.

link|flag
unwind: is that true in C or only C++? (Sorry, only familiar w/ C). – benc Aug 11 at 20:16
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.