Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'src/libs/zbxcommon/iprange.c')
-rw-r--r--src/libs/zbxcommon/iprange.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/libs/zbxcommon/iprange.c b/src/libs/zbxcommon/iprange.c
index 4cc14418be6..6a9643d7709 100644
--- a/src/libs/zbxcommon/iprange.c
+++ b/src/libs/zbxcommon/iprange.c
@@ -21,8 +21,6 @@
/******************************************************************************
* *
- * Function: iprange_is_whitespace_character *
- * *
* Purpose: checks if the specified character is allowed whitespace character *
* that can be used before or after iprange definition *
* *
@@ -48,8 +46,6 @@ static int iprange_is_whitespace_character(unsigned char value)
/******************************************************************************
* *
- * Function: iprange_address_length *
- * *
* Purpose: calculates the length of address data without trailing whitespace *
* *
******************************************************************************/
@@ -72,8 +68,6 @@ static size_t iprange_address_length(const char *address)
/******************************************************************************
* *
- * Function: iprange_apply_mask *
- * *
* Purpose: applies a bit mask to the parsed v4 or v6 IP range *
* *
* Parameters: iprange - [IN] the IP range *
@@ -119,8 +113,6 @@ static void iprange_apply_mask(zbx_iprange_t *iprange, int bits)
/******************************************************************************
* *
- * Function: iprangev4_parse *
- * *
* Purpose: parse IPv4 address into IP range structure *
* *
* Parameters: iprange - [OUT] the IP range *
@@ -213,8 +205,6 @@ static int iprangev4_parse(zbx_iprange_t *iprange, const char *address)
/******************************************************************************
* *
- * Function: iprangev6_parse *
- * *
* Purpose: parse IPv6 address into IP range structure *
* *
* Parameters: iprange - [OUT] the IP range *
@@ -349,8 +339,6 @@ check_fill:
/******************************************************************************
* *
- * Function: iprange_parse *
- * *
* Purpose: parse IP address (v4 or v6) into IP range structure *
* *
* Parameters: iprange - [OUT] the IP range *
@@ -376,8 +364,6 @@ int iprange_parse(zbx_iprange_t *iprange, const char *address)
/******************************************************************************
* *
- * Function: iprange_first *
- * *
* Purpose: gets the first IP address from the specified range *
* *
* Parameters: iprange - [IN] the IP range *
@@ -403,8 +389,6 @@ void iprange_first(const zbx_iprange_t *iprange, int *address)
/******************************************************************************
* *
- * Function: iprange_next *
- * *
* Purpose: gets the next IP address from the specified range *
* *
* Parameters: iprange - [IN] the IP range *
@@ -454,8 +438,6 @@ int iprange_next(const zbx_iprange_t *iprange, int *address)
/******************************************************************************
* *
- * Function: iprange_validate *
- * *
* Purpose: checks if the IP address is in specified range *
* *
* Parameters: iprange - [IN] the IP range *
@@ -483,8 +465,6 @@ int iprange_validate(const zbx_iprange_t *iprange, const int *address)
/******************************************************************************
* *
- * Function: iprange_volume *
- * *
* Purpose: get the number of addresses covered by the specified IP range *
* *
* Parameters: iprange - [IN] the IP range *