From 2f8fef39200fe07da66dd4c9cac3e9d9eab2ac3d Mon Sep 17 00:00:00 2001 From: Takuo Kitame Date: Fri, 2 Jul 2010 02:01:15 +0900 Subject: [PATCH] Added prebuilt/common/xbin/openvpn-up.sh from CM5 --- prebuilt/common/xbin/openvpn-up.sh | 44 ++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) create mode 100644 prebuilt/common/xbin/openvpn-up.sh diff --git a/prebuilt/common/xbin/openvpn-up.sh b/prebuilt/common/xbin/openvpn-up.sh new file mode 100644 index 00000000..98bb439a --- /dev/null +++ b/prebuilt/common/xbin/openvpn-up.sh @@ -0,0 +1,44 @@ +#!/system/xbin/bash +# +# /system/xbin/openvpn-up.sh v0.2 +# +# Philip Freeman +# +# TODO: add support for grabbing search domains ? +# +# Changes: +#-- v0.2 +# - Added system logging +# - Fixed fome path issues +# + +LOG="/system/bin/log -t openvpn-up" +SETPROP=/system/bin/setprop +EXPR=/system/xbin/expr +stop=0 +dns_num=1 +i=0 + +${LOG} "Starting..." + +eval opt=\$foreign_option_$i + +while [ ${stop} -eq 0 ]; do + if [ "`${EXPR} substr "$opt" 1 11`" = "dhcp-option" ]; then + if [ "`${EXPR} substr "$opt" 13 3`" = "DNS" ]; then + DNS="`${EXPR} substr "$opt" 17 1024`" + ${LOG} "Got DNS${dns_num}: ${DNS}" + if [ ${dns_num} -le 2 ]; then + #Set it + ${LOG} ${SETPROP} vpn.dns${dns_num} ${DNS} + ${SETPROP} vpn.dns${dns_num} ${DNS} + fi + dns_num=$(( ${dns_num}+1 )) + fi + fi + i=$(( $i+1 )) + eval opt=\$foreign_option_$i + if [ "$opt" = "" ]; then + stop=1 + fi +done