diff options
author | Everton Marques <everton.marques@gmail.com> | 2009-11-19 17:00:23 -0200 |
---|---|---|
committer | Everton Marques <everton.marques@gmail.com> | 2009-11-19 17:00:23 -0200 |
commit | 6cf8c261d41624992f55b195aa52f8867c6833c7 (patch) | |
tree | 23b96354179268266b0421d3a93677bee37ec56f /pimd/pim_tlv.h | |
parent | 15bf8e5a2197afc46dee41f6bd30469832896f78 (diff) | |
download | quagga-6cf8c261d41624992f55b195aa52f8867c6833c7.tar.bz2 quagga-6cf8c261d41624992f55b195aa52f8867c6833c7.tar.xz |
[pim] Fix net/host byte order
Diffstat (limited to 'pimd/pim_tlv.h')
-rw-r--r-- | pimd/pim_tlv.h | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/pimd/pim_tlv.h b/pimd/pim_tlv.h index 9602cb1c..5ec3dc43 100644 --- a/pimd/pim_tlv.h +++ b/pimd/pim_tlv.h @@ -71,21 +71,21 @@ typedef uint32_t pim_hello_options; #define PIM_TLV_MIN_SIZE (PIM_TLV_TYPE_SIZE + PIM_TLV_LENGTH_SIZE) #define PIM_TLV_OPTION_SIZE(option_len) (PIM_TLV_MIN_SIZE + (option_len)) -char *pim_tlv_append_uint16(char *buf, - const char *buf_pastend, +char *pim_tlv_append_uint16(uint8_t *buf, + const uint8_t *buf_pastend, uint16_t option_type, uint16_t option_value); -char *pim_tlv_append_2uint16(char *buf, - const char *buf_pastend, +char *pim_tlv_append_2uint16(uint8_t *buf, + const uint8_t *buf_pastend, uint16_t option_type, uint16_t option_value1, uint16_t option_value2); -char *pim_tlv_append_uint32(char *buf, - const char *buf_pastend, +char *pim_tlv_append_uint32(uint8_t *buf, + const uint8_t *buf_pastend, uint16_t option_type, uint32_t option_value); -char *pim_tlv_append_addrlist_ucast(char *buf, - const char *buf_pastend, +char *pim_tlv_append_addrlist_ucast(uint8_t *buf, + const uint8_t *buf_pastend, struct list *ifconnected); int pim_tlv_parse_holdtime(const char *ifname, struct in_addr src_addr, |