summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2009-01-27 19:22:42 +0000
committerjames <james@e7ae566f-a301-0410-adde-c780ea21d3b5>2009-01-27 19:22:42 +0000
commit435f512a1f565f92e7297edc102d8f782565f7a5 (patch)
tree66ca86f6b0abb347932c092f483ce8de9af2375d
parent63c9b4973cf7b3e437ab92b4c8b7cea7c8630932 (diff)
downloadopenvpn-435f512a1f565f92e7297edc102d8f782565f7a5.tar.gz
openvpn-435f512a1f565f92e7297edc102d8f782565f7a5.tar.xz
openvpn-435f512a1f565f92e7297edc102d8f782565f7a5.zip
Fixed some issues with C++ style comments that leaked into the code.
git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@3899 e7ae566f-a301-0410-adde-c780ea21d3b5
-rw-r--r--proto.h10
-rw-r--r--route.c2
2 files changed, 6 insertions, 6 deletions
diff --git a/proto.h b/proto.h
index c33fd92..443d457 100644
--- a/proto.h
+++ b/proto.h
@@ -66,15 +66,15 @@ struct openvpn_ethhdr
struct openvpn_arp {
# define ARP_MAC_ADDR_TYPE 0x0001
- uint16_t mac_addr_type; // 0x0001
+ uint16_t mac_addr_type; /* 0x0001 */
- uint16_t proto_addr_type; // 0x0800
- uint8_t mac_addr_size; // 0x06
- uint8_t proto_addr_size; // 0x04
+ uint16_t proto_addr_type; /* 0x0800 */
+ uint8_t mac_addr_size; /* 0x06 */
+ uint8_t proto_addr_size; /* 0x04 */
# define ARP_REQUEST 0x0001
# define ARP_REPLY 0x0002
- uint16_t arp_command; // 0x0001 for ARP request, 0x0002 for ARP reply
+ uint16_t arp_command; /* 0x0001 for ARP request, 0x0002 for ARP reply */
uint8_t mac_src[OPENVPN_ETH_ALEN];
in_addr_t ip_src;
diff --git a/route.c b/route.c
index 1efcf4e..d31b023 100644
--- a/route.c
+++ b/route.c
@@ -1530,7 +1530,7 @@ get_default_gateway (in_addr_t *gateway, in_addr_t *netmask)
*gateway = best_gw;
if (netmask)
{
- *netmask = 0xFFFFFF00; // FIXME -- get the real netmask of the adapter containing the default gateway
+ *netmask = 0xFFFFFF00; /* FIXME -- get the real netmask of the adapter containing the default gateway */
}
ret = true;
}