config/debug/strace.in
author "Yann E. MORIN" <yann.morin.1998@anciens.enib.fr>
Fri Apr 18 22:16:28 2008 +0000 (2008-04-18)
changeset 451 8a72f9bcf675
parent 330 447b203edc2e
child 850 ef8549b58b6f
permissions -rw-r--r--
Using SOCKS 4/5 proxy is no easy task:
- a machine may well be able to reach the proxy, even if it is not on the same sub-net(s) as the machine itself (absolutely legitimate)
- tsocks.conf needs a list of so-called 'local' networks that can be reached without the need for a SOCKS connection
- SOCKS proxies are expected to be in 'local' networks
- there is absolutely NO way to tell what networks are local, besides the sub-net(s) the machine is in

Therefore, appropriate configuration of SOCKS 4/5 configuration is really complex, and attempts to correctly overcome this issue are doomed.

/trunk/scripts/crosstool.sh | 52 46 6 0 ++++++++++++++++++++++++++++++++++----
/trunk/config/global/download_extract.in | 39 31 8 0 +++++++++++++++++++++++------
2 files changed, 77 insertions(+), 14 deletions(-)
yann@239
     1
# strace
yann@239
     2
yann@239
     3
menuconfig STRACE
yann@239
     4
    bool
yann@239
     5
    prompt "strace"
yann@239
     6
    default n
yann@239
     7
yann@239
     8
if STRACE
yann@239
     9
yann@239
    10
choice
yann@239
    11
    bool
yann@239
    12
    prompt "strace version"
yann@239
    13
yann@239
    14
config STRACE_V_4_5
yann@239
    15
    bool
yann@330
    16
    prompt "4.5 (OBSOLETE)"
yann@239
    17
    depends on OBSOLETE
yann@239
    18
yann@239
    19
config STRACE_V_4_5_14
yann@239
    20
    bool
yann@330
    21
    prompt "4.5.14 (OBSOLETE)"
yann@239
    22
    depends on OBSOLETE
yann@239
    23
yann@239
    24
config STRACE_V_4_5_15
yann@239
    25
    bool
yann@239
    26
    prompt "4.5.15"
yann@239
    27
yann@428
    28
config STRACE_V_4_5_16
yann@428
    29
    bool
yann@428
    30
    prompt "4.5.16"
yann@428
    31
yann@239
    32
# CT_INSERT_VERSION_ABOVE
yann@239
    33
# Don't remove above line!
yann@239
    34
endchoice
yann@239
    35
yann@239
    36
config STRACE_VERSION
yann@239
    37
    string
yann@239
    38
    default "4.5" if STRACE_V_4_5
yann@239
    39
    default "4.5.14" if STRACE_V_4_5_14
yann@239
    40
    default "4.5.15" if STRACE_V_4_5_15
yann@428
    41
    default "4.5.16" if STRACE_V_4_5_16
yann@239
    42
# CT_INSERT_VERSION_STRING_ABOVE
yann@239
    43
# # Don't remove above line!
yann@239
    44
yann@239
    45
endif