|
|
| version 1.12.2.4, 2011/11/02 16:10:24 | version 1.12.2.5, 2011/11/03 14:17:39 |
|---|---|
| Line 124 typedef enum { | Line 124 typedef enum { |
| typedef struct { | typedef struct { |
| uint8_t val_type; | uint8_t val_type; |
| uint8_t val_pad[3]; | |
| uint32_t val_len; | uint32_t val_len; |
| union { | union { |
| uint64_t net; | uint64_t net; |
| Line 309 int io_vals2map(u_char *buf, int buflen, array_t *vars | Line 310 int io_vals2map(u_char *buf, int buflen, array_t *vars |
| * return: =NULL error, !=NULL allocated variable array, after use must free with io_arrayDestroy() | * return: =NULL error, !=NULL allocated variable array, after use must free with io_arrayDestroy() |
| */ | */ |
| array_t *io_map2vals(u_char *buf, int buflen, int vnum, int zcpy); | array_t *io_map2vals(u_char *buf, int buflen, int vnum, int zcpy); |
| /* | |
| * io_allocVars() Allocate ait_val_t array | |
| * @varnum = Number of variables | |
| * return: =NULL error or !=NULL allocated array | |
| */ | |
| inline array_t *io_allocVars(u_int varnum); | |
| /* | |
| * io_freeVars() Free ait_val_t array | |
| * @vars = Variable array | |
| * return: none | |
| */ | |
| inline void io_freeVars(array_t ** __restrict vars); | |
| /* | /* |
| * ioPromptRead() Read data from input h[0] with prompt to output h[1] | * ioPromptRead() Read data from input h[0] with prompt to output h[1] |