summaryrefslogtreecommitdiffstats
path: root/net-proxy/socks5/files/unsocks
diff options
context:
space:
mode:
authorSuren A. Chilingaryan <csa@suren.me>2019-09-01 00:00:32 +0200
committerSuren A. Chilingaryan <csa@suren.me>2019-09-01 00:00:32 +0200
commitca9627e70852f6b2e835660df870fe3ab405882d (patch)
tree0a008b1d5b16fa0679a195ed7b5662c7891f591c /net-proxy/socks5/files/unsocks
downloaddarklin4-ca9627e70852f6b2e835660df870fe3ab405882d.tar.gz
darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.tar.bz2
darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.tar.xz
darklin4-ca9627e70852f6b2e835660df870fe3ab405882d.zip
Initial import
Diffstat (limited to 'net-proxy/socks5/files/unsocks')
-rw-r--r--net-proxy/socks5/files/unsocks28
1 files changed, 28 insertions, 0 deletions
diff --git a/net-proxy/socks5/files/unsocks b/net-proxy/socks5/files/unsocks
new file mode 100644
index 0000000..63b8d91
--- /dev/null
+++ b/net-proxy/socks5/files/unsocks
@@ -0,0 +1,28 @@
+#!/bin/sh
+
+################################################################################
+##
+## unsocks - Don't let the dynamic socks library be loaded
+##
+## If you have in your ~/.profile the following
+##
+## export LD_PRELOAD=libsocks5_sh.so
+##
+## All your session will be socksified.
+## Some programs don't like it so you can use unsocks to run them unsocksified.
+## The usage is very similar to runsocks(1).
+##
+## This is free software distributed under GPL
+##
+## Avi Alkalay <avi@br.ibm.com>
+## 5 Jun 1999
+################################################################################
+
+
+if [ -n "$LD_PRELOAD" ]; then
+ ld_new=`echo $LD_PRELOAD | sed -e 's|libsocks5_sh.so||g'`
+ LD_PRELOAD=$ld_new
+ export LD_PRELOAD
+fi
+
+exec "$@"