diff options
author | Roger Dingledine <arma@torproject.org> | 2004-10-16 22:56:46 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-10-16 22:56:46 +0000 |
commit | 7c3ab346f65f1f26ea32193ec5989d6bee003e62 (patch) | |
tree | 7863ef194ff7b80a8621ac542137e55455157c42 /src/or/or.h | |
parent | e9e9a258815db3c50c4581d7a1a9d27a45fb058b (diff) | |
download | tor-7c3ab346f65f1f26ea32193ec5989d6bee003e62.tar tor-7c3ab346f65f1f26ea32193ec5989d6bee003e62.tar.gz |
various tweaks and fixes
svn:r2548
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/or.h b/src/or/or.h index 2193a853c..65fea556a 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -825,7 +825,7 @@ typedef struct exit_redirect_t { uint16_t port_max; uint32_t addr_dest; - uint32_t port_dest; + uint16_t port_dest; } exit_redirect_t; /** Configuration options for a Tor process */ @@ -917,7 +917,7 @@ typedef struct { * node families */ struct config_line_t *RedirectExit; /**< List of config lines for simple * addr/port redirection */ - smartlist_t *RedirectExitList; /** List of exit_redirect_t */ + smartlist_t *RedirectExitList; /**< List of exit_redirect_t */ } or_options_t; /* XXX are these good enough defaults? */ |