Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Wifidog gateway devel #237

Open
wants to merge 44 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
e8b6bae
Initial Commit
GaomingPan Aug 9, 2015
bf36688
fix after restart the record time is not set
Aug 10, 2015
db9bd7e
fix result json formate
Aug 10, 2015
8c2c1c6
add white-black url flush deamo
Aug 12, 2015
90f9830
Merge pull request #1 in WIFI/wifidog from wifidog-20140822-devel to …
Aug 12, 2015
0079aed
flag the version number
Aug 13, 2015
3c8912c
add DeviceKey in ping header and auth header.
Aug 14, 2015
44c2231
seconds init.
Aug 14, 2015
94a967a
Merge pull request #2 in WIFI/wifidog from wifidog-20140822-devel to …
Aug 14, 2015
83bb410
add device key file
GaomingPan Aug 14, 2015
2473fed
add a device key file
GaomingPan Aug 14, 2015
5e30f64
add some comments in device_key.h
GaomingPan Aug 14, 2015
b5ada5a
Merge pull request #3 in WIFI/wifidog from wifidog-20140822-devel to …
Aug 14, 2015
fbb8091
fix iptables argments error
GaomingPan Aug 17, 2015
aa6d5aa
fix iptables argments error
GaomingPan Aug 17, 2015
4abd56c
Merge branch 'master' of ssh://108.108.108.5:7999/wifi/wifidog into w…
GaomingPan Aug 17, 2015
ea15920
合并处理冲突
GaomingPan Aug 17, 2015
5590a58
add comments to devicekey file
GaomingPan Aug 17, 2015
23e3a69
fix untrusted mac firewall set
GaomingPan Aug 20, 2015
8b03ec7
fix dog_conf_generator.sh and change ping info debug level
GaomingPan Sep 3, 2015
55a66d6
fix the bugs of function excute_shell_command(char*,char*)
GaomingPan Sep 5, 2015
fadf7b6
fix get clients rate
GaomingPan Sep 9, 2015
bfe7efc
修改获取设备参数方式
GaomingPan Sep 14, 2015
560062f
Merge pull request #4 in WIFI/wifidog from wifidog-20140822-devel to …
Sep 14, 2015
f6b9584
I changed the get clients information method,and fix the memory overf…
GaomingPan Sep 18, 2015
de4dd04
Merge pull request #5 in WIFI/wifidog from wifidog-20140822-devel to …
Sep 28, 2015
2655a82
update some get device's info functions
GaomingPan Sep 28, 2015
cfbd5e0
first commit in Beta.1
GaomingPan Oct 11, 2015
1bbe79d
fix WAN ip address get error.
GaomingPan Oct 12, 2015
23b3cca
add Protal fregment paramters
GaomingPan Oct 12, 2015
74dea3c
first commit as a stable version.
GaomingPan Oct 13, 2015
93bb0c0
add a build directory
GaomingPan Oct 13, 2015
82c432c
use as a first stable version,v1.2.1.
GaomingPan Oct 13, 2015
1e2db6d
m
GaomingPan Oct 13, 2015
206e79a
Merge pull request #8 in WIFI/wifidog from wifidog-20140822-devel to …
Oct 13, 2015
2d8af11
Merge branch 'master' of ssh://108.108.108.5:7999/wifi/wifidog into w…
GaomingPan Oct 13, 2015
4a2e23c
v1.2.1
GaomingPan Oct 13, 2015
ba97ff4
Beta-1
GaomingPan Oct 21, 2015
7e1b08e
Beta-1
GaomingPan Oct 22, 2015
e7498de
Merge branch 'wifidog-gateway-devel' of ssh://108.108.108.5:7999/wifi…
GaomingPan Oct 22, 2015
e98918b
v1.2.1 Beta-2
GaomingPan Oct 27, 2015
94832d3
fix a error named script function name
GaomingPan Nov 30, 2015
6aefffd
update auth server
GaomingPan Dec 7, 2015
452bcdb
release 0.0.1
GaomingPan Dec 23, 2015
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 7 additions & 9 deletions configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,11 @@ WIFIDOG_MINOR_VERSION=2
WIFIDOG_MICRO_VERSION=1
WIFIDOG_VERSION=$WIFIDOG_MAJOR_VERSION.$WIFIDOG_MINOR_VERSION.$WIFIDOG_MICRO_VERSION

# I want to use Semantic Beta Versioning like this x.y.z-release-x.y.z for test my new features.
WIFIDOG_BETA_VERSION=0.0.1
WIFIDOG_VERSION=$WIFIDOG_VERSION-$WIFIDOG_BETA_VERSION


AC_SUBST(WIFIDOG_MAJOR_VERSION)
AC_SUBST(WIFIDOG_MINOR_VERSION)
AC_SUBST(WIFIDOG_MICRO_VERSION)
Expand Down Expand Up @@ -90,16 +95,9 @@ AC_DEFUN([BB_CYASSL],
[
AC_ARG_ENABLE(cyassl, [ --enable-cyassl enable TLS support for auth server communication (no)], [], [enable_cyassl=no])
if test "x$enable_cyassl" = xyes; then
# CyaSSL has been renamed wolfSSL. Old method names are still available
# via cyassl/ssl.h, which maps old methods to new methods via macros.
# To find the proper lib to link against (cyassl or wolfssl), we do have
# the use the new naming scheme below as cyassl/ssl.h is not available for
# AC_SEARCH_LIBS
AC_CHECK_HEADERS(cyassl/ssl.h)
AC_SEARCH_LIBS([CyaTLSv1_client_method], [cyassl], [], [
AC_SEARCH_LIBS([wolfTLSv1_client_method], [wolfssl], [], [
AC_MSG_ERROR([unable to locate SSL lib: either wolfSSL or CyaSSL needed.])
])
AC_SEARCH_LIBS([CyaSSLv23_client_method], [cyassl wolfssl], [], [
AC_MSG_ERROR([unable to find the CyaSSLv23_client_method function.])
])

AC_MSG_CHECKING([for the CyaSSL SNI enabled])
Expand Down
70 changes: 0 additions & 70 deletions contrib/airos/wifidog/Makefile

This file was deleted.

87 changes: 0 additions & 87 deletions contrib/airos/wifidog/files.patch

This file was deleted.

27 changes: 0 additions & 27 deletions contrib/airos/wifidog/files/wifidog.init

This file was deleted.

24 changes: 0 additions & 24 deletions contrib/airos/wifidog/patches/100-counter_outoing.patch

This file was deleted.

43 changes: 0 additions & 43 deletions contrib/airos/wifidog/readme.txt

This file was deleted.

14 changes: 0 additions & 14 deletions contrib/build-deb/changelog

This file was deleted.

15 changes: 0 additions & 15 deletions contrib/build-deb/control

This file was deleted.

74 changes: 0 additions & 74 deletions contrib/build-deb/rules

This file was deleted.

Loading