|
RTRlib
|
Functions | |
| bool | lrtr_ip_addr_equal (const struct lrtr_ip_addr a, const struct lrtr_ip_addr b) |
| int | lrtr_ip_addr_to_str (const struct lrtr_ip_addr *ip, char *str, const unsigned int len) |
| bool | lrtr_ip_str_cmp (const struct lrtr_ip_addr *addr1, const char *addr2) |
| int | lrtr_ip_str_to_addr (const char *str, struct lrtr_ip_addr *ip) |
| void | lrtr_ipv4_addr_convert_byte_order (const uint32_t src, uint32_t *dest, const enum target_byte_order tbo) |
| void | lrtr_ipv6_addr_convert_byte_order (const uint32_t *src, uint32_t *dest, const enum target_byte_order tbo) |
| [in] | a | lrtr_ip_addr |
| [in] | b | lrtr_ip_addr |
| int lrtr_ip_addr_to_str | ( | const struct lrtr_ip_addr * | ip, |
| char * | str, | ||
| const unsigned int | len | ||
| ) |
Converts the passed lrtr_ip_addr struct to string representation.
| [in] | ip | lrtr_ip_addr |
| [out] | str | Pointer to a char array. The array must be at least INET_ADDRSTRLEN bytes long if the passed lrtr_ip_addr stores an IPv4 address. If lrtr_ip_addr stores an IPv6 address, str must be at least INET6_ADDRSTRLEN bytes long. |
| [in] | len | Length of the str array. |
| bool lrtr_ip_str_cmp | ( | const struct lrtr_ip_addr * | addr1, |
| const char * | addr2 | ||
| ) |
Compares addr1 in the lrtr_ip_addr struct with addr2 in string representation.
| [in] | addr1 | lrtr_ip_addr |
| [in] | addr2 | IP-address as string |
References lrtr_ip_str_to_addr().
| int lrtr_ip_str_to_addr | ( | const char * | str, |
| struct lrtr_ip_addr * | ip | ||
| ) |
Converts the passed IP address in string representation to an lrtr_ip_addr.
| [in] | str | Pointer to a Null terminated char array. |
| [out] | ip | Pointer to a lrtr_ip_addr struct. |
Referenced by lrtr_ip_str_cmp().
| void lrtr_ipv4_addr_convert_byte_order | ( | const uint32_t | src, |
| uint32_t * | dest, | ||
| const enum target_byte_order | tbo | ||
| ) |
Converts the passed IPv4 address to given byte order.
[{
| [in] | src | IPv4 address in source byte order. |
| [out] | dest | IPv4 address in target byte order. |
| [in] | tbo | Target byte order for address conversion. } |
| void lrtr_ipv6_addr_convert_byte_order | ( | const uint32_t * | src, |
| uint32_t * | dest, | ||
| const enum target_byte_order | tbo | ||
| ) |
Converts the passed IPv6 address to given byte order.
| [in] | src | IPv6 address (uint32_t array) in source byte order. |
| [out] | dest | IPv6 address (uint32_t array) in target byte order. |
| [in] | tbo | Target byte order for address conversion. |
1.8.5