diff options
author | Jacob Appelbaum <jacob@appelbaum.net> | 2010-09-24 12:52:07 -0700 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-09-30 11:39:34 -0400 |
commit | 3eaa9a376c756b0b8f836c4a78c3cf4012d6ffd7 (patch) | |
tree | ebc4d8429ebe5354490f45cbd5cf3199bb1bd7c4 /src/tools/tor-fw-helper/tor-fw-helper-upnp.h | |
parent | 9cc76cf0053cad90d2ff55d24993d9a0ac4c0cdb (diff) | |
download | tor-3eaa9a376c756b0b8f836c4a78c3cf4012d6ffd7.tar.gz tor-3eaa9a376c756b0b8f836c4a78c3cf4012d6ffd7.zip |
Changes to tor-fw-helper, some based on Nick's review
* MINIUPNPC rather than the generic UPNP
* Nick suggested a better abstraction model for tor-fw-helper
* Fix autoconf to build with either natpmp or miniupnpc
* Add AM_PROG_CC_C_O to fix automake complaint
* update spec to address nickm's concern
* refactor nat-pmp to match upnp state
* we prefer tor_snprintf to snprintf
* link properlty for tor_snprintf
* rename test_commandline_options to log_commandline_options
* cast this uint as an int
* detect possible FD_SETSIZE errors
* make note about future enhancements for natpmp
* add upnp enhancement note
* ChangeLog entry
* doxygen and check-spaces cleanup
* create tor-fw-helper.1.txt
Diffstat (limited to 'src/tools/tor-fw-helper/tor-fw-helper-upnp.h')
-rw-r--r-- | src/tools/tor-fw-helper/tor-fw-helper-upnp.h | 21 |
1 files changed, 16 insertions, 5 deletions
diff --git a/src/tools/tor-fw-helper/tor-fw-helper-upnp.h b/src/tools/tor-fw-helper/tor-fw-helper-upnp.h index aac7452319..fdbd2dd185 100644 --- a/src/tools/tor-fw-helper/tor-fw-helper-upnp.h +++ b/src/tools/tor-fw-helper/tor-fw-helper-upnp.h @@ -2,6 +2,12 @@ * Copyright (c) 2010, The Tor Project, Inc. */ /* See LICENSE for licensing information */ +/** + * \file tor-fw-helper-upnp.h + * \brief The main header for our firewall helper. + **/ + +#ifdef MINIUPNPC #ifndef _TOR_FW_HELPER_UPNP_H #define _TOR_FW_HELPER_UPNP_H @@ -10,8 +16,11 @@ #include <miniupnpc/upnpcommands.h> #include <miniupnpc/upnperrors.h> +/** This is a magic number for miniupnpc lan address size. */ #define UPNP_LANADDR_SZ 64 +/** This is our miniupnpc meta structure - it holds our request data, + * responses, and various miniupnpc parameters. */ typedef struct miniupnpc_state_t { struct UPNPUrls urls; struct IGDdatas data; @@ -19,14 +28,16 @@ typedef struct miniupnpc_state_t { int init; } miniupnpc_state_t; -int tor_upnp_init(miniupnpc_state_t *state); +const tor_fw_backend_t *tor_fw_get_miniupnp_backend(void); + +int tor_upnp_init(tor_fw_options_t *options, void *backend_state); -int tor_upnp_cleanup(miniupnpc_state_t *state); +int tor_upnp_cleanup(tor_fw_options_t *options, void *backend_state); -int tor_upnp_fetch_public_ip(miniupnpc_state_t *state); +int tor_upnp_fetch_public_ip(tor_fw_options_t *options, void *backend_state); -int tor_upnp_add_tcp_mapping(miniupnpc_state_t *state, - uint16_t internal_port, uint16_t external_port); +int tor_upnp_add_tcp_mapping(tor_fw_options_t *options, void *backend_state); #endif +#endif |