0
0
mirror of https://github.com/OpenVPN/openvpn3.git synced 2024-09-20 20:13:05 +02:00
openvpn3/sources
James Yonan 1481327d72 OpenVPN 1.0.2 build 98 (iOS)
Ported iOS client and OpenVPN 3 core to ARM-64.
Now building a "fat binary" with Xcode 5.0.1 that
targets arm7, arm7s, and arm64.

Outstanding issues:

* IPv6 doesn't route through tunnel on iOS7
* Client doesn't install on iOS 5.1.1.
2013-11-11 12:33:35 -07:00

32 lines
627 B
Bash
Executable File

#!/usr/bin/env bash
top=$(pwd)
# openvpn core
find openvpn | grep -E '\.(cpp|hpp|c|h)$'
# core API
echo client/ovpncli.hpp
echo client/ovpncli.cpp
# Java API
echo javacli/OpenVPNClientThread.java
# Android client
android=android/OpenVPN/src/net/openvpn/openvpn
cd $android
for f in $(git ls-files | grep '\.java$') ; do
echo $android/$f
done
cd $top
# iOS client
echo ios/OpenVPN/OpenVPNPlugin/OpenVPNPlugin.h
echo ios/OpenVPN/OpenVPNPlugin/OpenVPNPlugin.cpp
ls ios/OpenVPN/OpenVPNPlugin/pluginutil.*
iosapp=ios/OpenVPN/OpenVPNApp-iOS
cd $iosapp
for f in *.h *.m *.mm *.hpp *.cpp ; do
echo $iosapp/$f
done
cd $top