Returns true to include the field */
| 78 | |
| 79 | /* Returns true to include the field */ |
| 80 | static bool exclude_this(const struct tlv_field *f, ptrint_t *p) |
| 81 | { |
| 82 | /* We always exclude 0! */ |
| 83 | if (f->numtype == 0) |
| 84 | return false; |
| 85 | if (f->numtype == ptr2int(p)) |
| 86 | return false; |
| 87 | return true; |
| 88 | } |
| 89 | |
| 90 | static bool sign(const char *messagename, |
| 91 | const char *fieldname, |