vote up 7 vote down star
3

I need to transfer packets through the internet whose length should be dynamic.

struct packet
{
  int id;
  int filename_len;
  char filename[];
};

The problem is that zero-length arrays are not ISO-compliant.

Should I use char filename[1]; instead? But then sizeof(struct packet) will not return the correct value anymore.

flag

4 Answers

vote up 4 vote down check

Classic issue. You can simply deal with it (and note that sizeof(foo) may be off by more than one if the compiler rounds the structure size up, which is (I believe) allowed), or you can do something like this:

struct packetheader {
   int id;
   int filename_len;
};
struct packet {
   struct packetheader h;
   char filename[1];
};

This is annoying (you have to use h.id, etc), but it works. Usually I just deal with it being one, but the above might be marginally more portable.

link|flag
vote up 6 vote down

I think you should look at some existing examples of dynamically sized structures for guidance here. The best example I know of are the TOKEN APIs in Win32. They use the macro ANYSIZE_ARRAY which just resolves down to 1. Raymond Chen did an extensive blog article detailing exactly why they are done this way

As for operations such as sizeof failing. This will fail no matter what solution you choose for a dynamically sized struct. sizeof is a compile time operation and you will be re-sizing the structure at runtime. It simply cannot work.

link|flag
with sizeof I meant just the size of the struct, not the dynamic field, because when receiving the UDP packet I first read in the struct which contains the size of the dynamic field, and then I read dynamic field. – codymanix May 26 at 14:48
vote up 4 vote down

I suggest to use char filename[1] and include a terminating 0-byte. This way, you can malloc() the correct structure size and avoid one-off errors like this:

ptr = malloc(sizeof(struct packet)+filename_len);
strncpy(&ptr->filename, filename, filename_len);

But the receiver must to know that it needs to read filename_len+1 bytes.

link|flag
vote up 1 vote down

Indeed zero-length arrays are not part of the standard. But what you have in your code snippet is a flexible array which is part of the ISO C99 standard. If it is possible for you to use C99, I'd use a flexible array, if not jesup's suggestion is probably the best.

link|flag

Your Answer

Get an OpenID
or

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