Skip to Content.
Sympa Menu

sm-commit - [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (f722858ca3ffdefe66744e431de8799afa8aa5b4)

sm-commit AT lists.ibiblio.org

Subject: Source Mage code commit list

List archive

Chronological Thread  
  • From: Vlad Glagolev <scm AT sourcemage.org>
  • To: sm-commit AT lists.ibiblio.org
  • Subject: [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (f722858ca3ffdefe66744e431de8799afa8aa5b4)
  • Date: Thu, 26 May 2011 16:17:10 -0500

GIT changes to master grimoire by Vlad Glagolev <stealth AT sourcemage.org>:

ChangeLog | 3 +++
net/nylon/DEPENDS | 1 +
net/nylon/DETAILS | 15 +++++++++++++++
net/nylon/HISTORY | 2 ++
net/nylon/INSTALL | 6 ++++++
net/nylon/init.d/nylon | 9 +++++++++
net/nylon/init.d/nylon.conf | 34 ++++++++++++++++++++++++++++++++++
7 files changed, 70 insertions(+)

New commits:
commit f722858ca3ffdefe66744e431de8799afa8aa5b4
Author: Vlad Glagolev <stealth AT sourcemage.org>
Commit: Vlad Glagolev <stealth AT sourcemage.org>

nylon: new spell, Unix SOCKS 4 and 5 proxy server

diff --git a/ChangeLog b/ChangeLog
index 0ecd48b..32a83e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,6 @@
+2011-05-27 Vlad Glagolev <stealth AT sourcemage.org>
+ * net/nylon: new spell, Unix SOCKS 4 and 5 proxy server
+
2011-05-26 Ismael Luceno <ismael AT sourcemage.org>
* net/cpuminer: new spell, CPU miner for Bitcoin

diff --git a/net/nylon/DEPENDS b/net/nylon/DEPENDS
new file mode 100755
index 0000000..9178714
--- /dev/null
+++ b/net/nylon/DEPENDS
@@ -0,0 +1 @@
+depends libevent
diff --git a/net/nylon/DETAILS b/net/nylon/DETAILS
new file mode 100755
index 0000000..616d120
--- /dev/null
+++ b/net/nylon/DETAILS
@@ -0,0 +1,15 @@
+ SPELL=nylon
+ VERSION=1.21
+ SOURCE=$SPELL-$VERSION.tar.gz
+SOURCE_DIRECTORY="$BUILD_DIRECTORY/$SPELL-$VERSION"
+ SOURCE_URL[0]=http://monkey.org/~marius/$SPELL/$SOURCE
+
SOURCE_HASH=sha512:7338ebf376843a49777bfc2c04dc0f9b14a25162efb008a555b6d74991bfbddbe5eb8fa6371c8c6a4dae9739f15d6d85135ba9d39472bc2646293a39777b5cfa
+ WEB_SITE=http://monkey.org/~marius/pages/?page=nylon
+ ENTERED=20110527
+ LICENSE[0]=BSD
+ KEYWORDS="net"
+ SHORT="Unix SOCKS 4 and 5 proxy server"
+cat << EOF
+nylon is a proxy server, developed on OpenBSD. It supports SOCKS version 4
+and 5, as well as a mirror mode so that services can be mirrored directly.
+EOF
diff --git a/net/nylon/HISTORY b/net/nylon/HISTORY
new file mode 100644
index 0000000..9434a13
--- /dev/null
+++ b/net/nylon/HISTORY
@@ -0,0 +1,2 @@
+2011-05-27 Vlad Glagolev <stealth AT sourcemage.org>
+ * DETAILS, DEPENDS, INSTALL, init.d: created spell
diff --git a/net/nylon/INSTALL b/net/nylon/INSTALL
new file mode 100755
index 0000000..0d5f079
--- /dev/null
+++ b/net/nylon/INSTALL
@@ -0,0 +1,6 @@
+default_install &&
+
+if [[ $INIT_INSTALLED ]]; then
+ install_config_file "$SPELL_DIRECTORY/init.d/nylon.conf" \
+ "$INSTALL_ROOT/etc/sysconfig/nylon"
+fi
diff --git a/net/nylon/init.d/nylon b/net/nylon/init.d/nylon
new file mode 100755
index 0000000..e29f049
--- /dev/null
+++ b/net/nylon/init.d/nylon
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+PROGRAM=/usr/bin/nylon
+PIDFILE=/var/run/nylon.pid
+ARGS="-c /etc/sysconfig/nylon -P $PIDFILE"
+RUNLEVEL=3
+NEEDS="+network"
+
+. /etc/init.d/smgl_init
diff --git a/net/nylon/init.d/nylon.conf b/net/nylon/init.d/nylon.conf
new file mode 100644
index 0000000..a65abec
--- /dev/null
+++ b/net/nylon/init.d/nylon.conf
@@ -0,0 +1,34 @@
+# general settings
+[General]
+
+# number of simultaneous connections allowed
+No-Simultaneous-Conn=10
+
+# log connections and other information to syslog? 1: on, 0: off
+Log=1
+
+# be verbose on the console? 1: on, 0: off
+Verbose=0
+
+# store pid file
+#PIDfile=/tmp/nylon.pid
+
+# server settings
+[Server]
+
+# interface to listen to connections
+#Binding-Interface=fxp1
+
+# interface to bind outgoing connections to
+#Connecting-Interface=fxp0
+
+# listening port to bind to
+Port=1080
+
+# allowed is processed first, then deny
+
+# allowable connect ips/ranges
+#Allow-IP=141.0.0.0/8 127.0.0.1 10.0.0.0/24
+Allow-IP=127.0.0.1/32
+# denied connect ips/ranges
+#Deny-IP=10.0.0.0/24



  • [SM-Commit] GIT changes to master grimoire by Vlad Glagolev (f722858ca3ffdefe66744e431de8799afa8aa5b4), Vlad Glagolev, 05/26/2011

Archive powered by MHonArc 2.6.24.

Top of Page