summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2009-08-24 19:11:59 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2009-08-24 19:11:59 +0000
commitc705be2a36bbf45adf8edc8c3c91b8b74f7dfa70 (patch)
treeef90b972f72d4ea00cc4fff73dc194d647e4edc8
parent16322c78ff4805ae5848541fd3b9a8dcdb077310 (diff)
downloadopenvpn-c705be2a36bbf45adf8edc8c3c91b8b74f7dfa70.tar.gz
openvpn-c705be2a36bbf45adf8edc8c3c91b8b74f7dfa70.tar.xz
openvpn-c705be2a36bbf45adf8edc8c3c91b8b74f7dfa70.zip
Added PLATFORM-SPECIFIC comment tag to platform-specific functions
in route.c to make it easier to spot them. git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@4851 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r--route.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/route.c b/route.c
index f7ec601..3809c82 100644
--- a/route.c
+++ b/route.c
@@ -2060,7 +2060,7 @@ get_default_gateway (in_addr_t *ret, in_addr_t *netmask)
#else
bool
-get_default_gateway (in_addr_t *ret, in_addr_t *netmask)
+get_default_gateway (in_addr_t *ret, in_addr_t *netmask) /* PLATFORM-SPECIFIC */
{
return false;
}
@@ -2156,7 +2156,7 @@ get_bypass_addresses (struct route_bypass *rb, const unsigned int flags)
#else
static void
-get_bypass_addresses (struct route_bypass *rb, const unsigned int flags)
+get_bypass_addresses (struct route_bypass *rb, const unsigned int flags) /* PLATFORM-SPECIFIC */
{
}
@@ -2303,7 +2303,7 @@ get_default_gateway_mac_addr (unsigned char *macaddr)
#else
bool
-get_default_gateway_mac_addr (unsigned char *macaddr)
+get_default_gateway_mac_addr (unsigned char *macaddr) /* PLATFORM-SPECIFIC */
{
return false;
}
@@ -2355,7 +2355,7 @@ test_local_addr (const in_addr_t addr)
int
-test_local_addr (const in_addr_t addr)
+test_local_addr (const in_addr_t addr) /* PLATFORM-SPECIFIC */
{
return TLA_NOT_IMPLEMENTED;
}