diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2010-10-30 06:08:47 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2010-11-10 15:48:26 +0100 |
commit | 556a1b9e459d28b5f37fa012176d6931fe721844 (patch) | |
tree | e7b5c12c255d40a2df62bee90ef8e2b7603242e6 /src/or/or.h | |
parent | b9cac605abf029d9f0eb3d83a5f64f5b484d61c1 (diff) | |
download | tor-556a1b9e459d28b5f37fa012176d6931fe721844.tar.gz tor-556a1b9e459d28b5f37fa012176d6931fe721844.zip |
Change Natd into NATD in our options.
Breaking this out of the last commit because this might be more
controversial.
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 14f050deb0..7f5f68ee52 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -2379,7 +2379,7 @@ typedef struct { * connections. */ config_line_t *TransListenAddress; /** Addresses to bind for listening for transparent natd connections */ - config_line_t *NatdListenAddress; + config_line_t *NATDListenAddress; /** Addresses to bind for listening for SOCKS connections. */ config_line_t *DNSListenAddress; /** Addresses to bind for listening for OR connections. */ @@ -2403,7 +2403,7 @@ typedef struct { int SocksPort; /**< Port to listen on for SOCKS connections. */ /** Port to listen on for transparent pf/netfilter connections. */ int TransPort; - int NatdPort; /**< Port to listen on for transparent natd connections. */ + int NATDPort; /**< Port to listen on for transparent natd connections. */ int ControlPort; /**< Port to listen on for control connections. */ config_line_t *ControlSocket; /**< List of Unix Domain Sockets to listen on * for control connections. */ |