Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | lib: add extern "C" {} blocks to all libfrr headers | Renato Westphal | 2019-02-12 | 1 | -0/+8 |
| | | | | | | | These are necessary to use functions defined in these headers from C++. Signed-off-by: David Lamparter <equinox@diac24.net> Signed-off-by: Renato Westphal <renato@opensourcerouting.org> | ||||
* | *: use C99 standard fixed-width integer types | Quentin Young | 2018-03-27 | 1 | -1/+1 |
| | | | | | | | | | | | | | | | | | | | | | | The following types are nonstandard: - u_char - u_short - u_int - u_long - u_int8_t - u_int16_t - u_int32_t Replace them with the C99 standard types: - uint8_t - unsigned short - unsigned int - unsigned long - uint8_t - uint16_t - uint32_t Signed-off-by: Quentin Young <qlyoung@cumulusnetworks.com> | ||||
* | lib: VLAN definition | vivek | 2017-05-25 | 1 | -0/+29 |
Signed-off-by: Vivek Venkatraman <vivek@cumulusnetworks.com> Reviewed-by: Donald Sharp <sharpd@cumulusnetworks.com> |