Improve altcp allocator documentation

This commit is contained in:
Dirk Ziegelmeier 2018-02-20 13:31:27 +01:00
parent fc3c186289
commit 333fff3e66

View File

@ -83,8 +83,11 @@ struct altcp_pcb {
u8_t pollinterval;
};
/** @ingroup altcp */
typedef struct altcp_allocator_s {
/** Allocator function */
altcp_new_fn alloc;
/** Argument to allocator function */
void *arg;
} altcp_allocator_t;