mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 21:23:58 +01:00
enable and test transproxy on FreeBSD derivatives #18448
The transproxy feature is only enabled when __FreeBSD__ is defined, and only regular FreeBSD does that. Change this to __FreeBSD_kernel__ which is defined on derivatives as well. This enables the relevant options/validate__transproxy test on FreeBSD derivatives.
This commit is contained in:
parent
82df3e70ac
commit
db263442af
@ -2861,7 +2861,7 @@ options_validate(or_options_t *old_options, or_options_t *options,
|
||||
options->TransProxyType_parsed = TPT_TPROXY;
|
||||
#endif
|
||||
} else if (!strcasecmp(options->TransProxyType, "ipfw")) {
|
||||
#if !defined(__FreeBSD__) && !defined( DARWIN )
|
||||
#if !defined(__FreeBSD_kernel__) && !defined( DARWIN )
|
||||
/* Earlier versions of OS X have ipfw */
|
||||
REJECT("ipfw is a FreeBSD-specific"
|
||||
"and OS X/Darwin-specific feature.");
|
||||
|
@ -1058,7 +1058,7 @@ test_options_validate__transproxy(void *ignored)
|
||||
ret = options_validate(tdata->old_opt, tdata->opt, tdata->def_opt, 0, &msg);
|
||||
tt_int_op(ret, OP_EQ, -1);
|
||||
|
||||
#if !defined(__FreeBSD__) && !defined( DARWIN )
|
||||
#if !defined(__FreeBSD_kernel__) && !defined( DARWIN )
|
||||
tt_str_op(msg, OP_EQ, "ipfw is a FreeBSD-specificand OS X/Darwin-specific "
|
||||
"feature.");
|
||||
#else
|
||||
@ -1086,7 +1086,7 @@ test_options_validate__transproxy(void *ignored)
|
||||
tt_int_op(ret, OP_EQ, -1);
|
||||
tt_assert(!msg);
|
||||
#endif
|
||||
#if defined(__FreeBSD__) || defined( DARWIN )
|
||||
#if defined(__FreeBSD_kernel__) || defined( DARWIN )
|
||||
tdata = get_options_test_data("TransProxyType ipfw\n"
|
||||
"TransPort 127.0.0.1:123\n");
|
||||
ret = options_validate(tdata->old_opt, tdata->opt, tdata->def_opt, 0, &msg);
|
||||
|
Loading…
Reference in New Issue
Block a user