aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/exit/gnunet-helper-exit-windows.c7
-rw-r--r--src/vpn/gnunet-helper-vpn-windows.c10
2 files changed, 3 insertions, 14 deletions
diff --git a/src/exit/gnunet-helper-exit-windows.c b/src/exit/gnunet-helper-exit-windows.c
index 01ca2f83d..6b80d83d4 100644
--- a/src/exit/gnunet-helper-exit-windows.c
+++ b/src/exit/gnunet-helper-exit-windows.c
@@ -333,9 +333,7 @@ set_address6 (const char *address, unsigned long prefix_len)
333/** 333/**
334 * @brief Removes the IPv6-Address given in address from the interface dev 334 * @brief Removes the IPv6-Address given in address from the interface dev
335 * 335 *
336 * @param dev the interface to remove
337 * @param address the IPv4-Address 336 * @param address the IPv4-Address
338 * @param mask the netmask
339 */ 337 */
340static void 338static void
341remove_address6 (const char *address) 339remove_address6 (const char *address)
@@ -364,7 +362,6 @@ remove_address6 (const char *address)
364/** 362/**
365 * @brief Sets the IPv4-Address given in address on the interface dev 363 * @brief Sets the IPv4-Address given in address on the interface dev
366 * 364 *
367 * @param dev the interface to configure
368 * @param address the IPv4-Address 365 * @param address the IPv4-Address
369 * @param mask the netmask 366 * @param mask the netmask
370 */ 367 */
@@ -410,9 +407,7 @@ set_address4 (const char *address, const char *mask)
410/** 407/**
411 * @brief Removes the IPv4-Address given in address from the interface dev 408 * @brief Removes the IPv4-Address given in address from the interface dev
412 * 409 *
413 * @param dev the interface to remove
414 * @param address the IPv4-Address 410 * @param address the IPv4-Address
415 * @param mask the netmask
416 */ 411 */
417static void 412static void
418remove_address4 (const char *address) 413remove_address4 (const char *address)
@@ -1333,7 +1328,7 @@ initialize_io_facility (struct io_facility * elem,
1333/** 1328/**
1334 * Start forwarding to and from the tunnel. 1329 * Start forwarding to and from the tunnel.
1335 * 1330 *
1336 * @param fd_tun tunnel FD 1331 * @param tap_handle device handle for interacting with the Virtual interface
1337 */ 1332 */
1338static void 1333static void
1339run (HANDLE tap_handle) 1334run (HANDLE tap_handle)
diff --git a/src/vpn/gnunet-helper-vpn-windows.c b/src/vpn/gnunet-helper-vpn-windows.c
index b810dc706..f4ff9f5ea 100644
--- a/src/vpn/gnunet-helper-vpn-windows.c
+++ b/src/vpn/gnunet-helper-vpn-windows.c
@@ -335,9 +335,7 @@ set_address6 (const char *address, unsigned long prefix_len)
335/** 335/**
336 * @brief Removes the IPv6-Address given in address from the interface dev 336 * @brief Removes the IPv6-Address given in address from the interface dev
337 * 337 *
338 * @param dev the interface to remove
339 * @param address the IPv4-Address 338 * @param address the IPv4-Address
340 * @param mask the netmask
341 */ 339 */
342static void 340static void
343remove_address6 (const char *address) 341remove_address6 (const char *address)
@@ -366,7 +364,6 @@ remove_address6 (const char *address)
366/** 364/**
367 * @brief Sets the IPv4-Address given in address on the interface dev 365 * @brief Sets the IPv4-Address given in address on the interface dev
368 * 366 *
369 * @param dev the interface to configure
370 * @param address the IPv4-Address 367 * @param address the IPv4-Address
371 * @param mask the netmask 368 * @param mask the netmask
372 */ 369 */
@@ -388,8 +385,7 @@ set_address4 (const char *address, const char *mask)
388 strerror (errno)); 385 strerror (errno));
389 return -1; 386 return -1;
390 } 387 }
391 // Set Device to Subnet-Mode? 388 // Set Device to Subnet-Mode? do we really need openvpn/tun.c:2925 ?
392 // do we really need tun.c:2925 ?
393 389
394 /* 390 /*
395 * prepare the command 391 * prepare the command
@@ -412,9 +408,7 @@ set_address4 (const char *address, const char *mask)
412/** 408/**
413 * @brief Removes the IPv4-Address given in address from the interface dev 409 * @brief Removes the IPv4-Address given in address from the interface dev
414 * 410 *
415 * @param dev the interface to remove
416 * @param address the IPv4-Address 411 * @param address the IPv4-Address
417 * @param mask the netmask
418 */ 412 */
419static void 413static void
420remove_address4 (const char *address) 414remove_address4 (const char *address)
@@ -1335,7 +1329,7 @@ initialize_io_facility (struct io_facility * elem,
1335/** 1329/**
1336 * Start forwarding to and from the tunnel. 1330 * Start forwarding to and from the tunnel.
1337 * 1331 *
1338 * @param fd_tun tunnel FD 1332 * @param tap_handle device handle for interacting with the Virtual interface
1339 */ 1333 */
1340static void 1334static void
1341run (HANDLE tap_handle) 1335run (HANDLE tap_handle)