SECTION:=net
CATEGORY:=Network
DEPENDS:=+libopenssl
- TITLE:=bidirectional virtual data connection tunnelled in HTTP requests
+ TITLE:=bidirectional tunnel in HTTP requests
URL:=http://www.nocrew.org/software/httptunnel.html
endef
$(INSTALL_DIR) $(1)/usr/sbin
$(INSTALL_BIN) $(PKG_BUILD_DIR)/hts $(1)/usr/sbin/
$(INSTALL_BIN) $(PKG_BUILD_DIR)/htc $(1)/usr/sbin/
+ $(INSTALL_DIR) $(1)/etc/init.d
+ $(INSTALL_BIN) ./files/httptunnel.init $(1)/etc/init.d/httptunnel
+ $(INSTALL_DIR) $(1)/etc/config
+ $(INSTALL_DATA) ./files/httptunnel.conf $(1)/etc/config/httptunnel
endef
$(eval $(call BuildPackage,httptunnel))
--- /dev/null
+#!/bin/sh /etc/rc.common
+# Copyright (C) 2007 OpenWrt.org
+START=70
+BIN=hts
+
+start_httptunnel() {
+ local section="$1"
+
+ config_get destination "$section" destination
+ config_get sourceport "$section" sourceport
+
+ echo start httptunnel: dest: "$destination", src: "$sourceport"
+
+ $BIN --forward-port "$destination" "$sourceport"
+}
+
+
+start() {
+ config_load httptunnel
+ config_foreach start_httptunnel httptunnel
+}
+
+stop() {
+ ps aux | grep hts | awk '{print }' | \
+ xargs kill 2> /dev/null
+}
+
\ No newline at end of file