mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 23:53:32 +01:00
Merge remote-tracking branch 'origin/maint-0.2.6'
This commit is contained in:
commit
6ae9769b29
4
changes/bug15064
Normal file
4
changes/bug15064
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
o Major bugfixes (FreeBSD IPFW transparent proxy):
|
||||||
|
- Fix address detection with FreeBSD transparent proxies,
|
||||||
|
when "TransProxyType ipfw" is in use.
|
||||||
|
Fixes bug 15064; bugfix on 0.2.5.4-alpha.
|
@ -1763,7 +1763,8 @@ connection_ap_get_original_destination(entry_connection_t *conn,
|
|||||||
if (options->TransProxyType_parsed == TPT_PF_DIVERT)
|
if (options->TransProxyType_parsed == TPT_PF_DIVERT)
|
||||||
return destination_from_socket(conn, req);
|
return destination_from_socket(conn, req);
|
||||||
|
|
||||||
if (options->TransProxyType_parsed == TPT_DEFAULT)
|
if (options->TransProxyType_parsed == TPT_DEFAULT ||
|
||||||
|
options->TransProxyType_parsed == TPT_IPFW)
|
||||||
return destination_from_pf(conn, req);
|
return destination_from_pf(conn, req);
|
||||||
|
|
||||||
(void)conn;
|
(void)conn;
|
||||||
|
Loading…
Reference in New Issue
Block a user