Address types: fix no previous prototype for ... [-Wmissing-prototypes]

address_types.c:230:14: warning: no previous prototype for 'ipv4_name_res_str' [-Wmissing-prototypes]
address_types.c:237:5: warning: no previous prototype for 'ipv4_name_res_len' [-Wmissing-prototypes]
address_types.c:386:14: warning: no previous prototype for 'ipv6_name_res_str' [-Wmissing-prototypes]
address_types.c:393:5: warning: no previous prototype for 'ipv6_name_res_len' [-Wmissing-prototypes]
address_types.c:509:14: warning: no previous prototype for 'fcwwn_name_res_str' [-Wmissing-prototypes]
address_types.c:538:5: warning: no previous prototype for 'fcwwn_name_res_len' [-Wmissing-prototypes]

Change-Id: I6cf44b887d9e35fb76bd1840444074c9102b4d2b
Reviewed-on: https://code.wireshark.org/review/7508
Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
Reviewed-by: Michael Mann <mmann78@netscape.net>
Reviewed-by: Anders Broman <a.broman58@gmail.com>
This commit is contained in:
Alexis La Goutte 2015-03-03 13:16:52 +01:00 committed by Anders Broman
parent a308aef89d
commit d2720ecca7
1 changed files with 6 additions and 6 deletions

View File

@ -227,14 +227,14 @@ static int ipv4_len(void)
return 4;
}
const gchar* ipv4_name_res_str(const address* addr)
static const gchar* ipv4_name_res_str(const address* addr)
{
guint32 ip4_addr;
memcpy(&ip4_addr, addr->data, sizeof ip4_addr);
return get_hostname(ip4_addr);
}
int ipv4_name_res_len(void)
static int ipv4_name_res_len(void)
{
return MAX_ADDR_STR_LEN; /* XXX - This can be lower */
}
@ -383,14 +383,14 @@ static int ipv6_len(void)
return 16;
}
const gchar* ipv6_name_res_str(const address* addr)
static const gchar* ipv6_name_res_str(const address* addr)
{
struct e_in6_addr ip6_addr;
memcpy(&ip6_addr.bytes, addr->data, sizeof ip6_addr.bytes);
return get_hostname6(&ip6_addr);
}
int ipv6_name_res_len(void)
static int ipv6_name_res_len(void)
{
return MAX_ADDR_STR_LEN; /* XXX - This can be lower */
}
@ -506,7 +506,7 @@ static int fcwwn_len(void)
return FCWWN_ADDR_LEN;
}
const gchar* fcwwn_name_res_str(const address* addr)
static const gchar* fcwwn_name_res_str(const address* addr)
{
const guint8 *addrp = (const guint8*)addr->data;
int fmt;
@ -535,7 +535,7 @@ const gchar* fcwwn_name_res_str(const address* addr)
return "";
}
int fcwwn_name_res_len(void)
static int fcwwn_name_res_len(void)
{
return MAX_ADDR_STR_LEN; /* XXX - This can be lower */
}