Changeset 901
- Timestamp:
- 01/17/06 13:58:13 (7 years ago)
- Location:
- trunk/wifidog
- Files:
-
- 5 removed
- 46 modified
-
.cvsignore (deleted)
-
AUTHORS (modified) (1 diff)
-
ChangeLog (modified) (1 diff)
-
FAQ (modified) (1 diff)
-
Makefile.am (modified) (1 diff)
-
README (modified) (1 diff)
-
README.openwrt (modified) (2 diffs)
-
autogen.sh (modified) (1 diff)
-
configure.in (modified) (1 diff)
-
doc/.cvsignore (deleted)
-
doc/README.developers.txt (modified) (2 diffs)
-
ipkg/.cvsignore (deleted)
-
libhttpd/.cvsignore (deleted)
-
libhttpd/Makefile.am (modified) (1 diff)
-
src/.cvsignore (deleted)
-
src/Makefile.am (modified) (1 diff)
-
src/auth.c (modified) (1 diff)
-
src/auth.h (modified) (1 diff)
-
src/centralserver.c (modified) (1 diff)
-
src/centralserver.h (modified) (1 diff)
-
src/client_list.c (modified) (1 diff)
-
src/client_list.h (modified) (1 diff)
-
src/commandline.c (modified) (1 diff)
-
src/commandline.h (modified) (1 diff)
-
src/common.h (modified) (1 diff)
-
src/conf.c (modified) (1 diff)
-
src/conf.h (modified) (1 diff)
-
src/debug.c (modified) (1 diff)
-
src/debug.h (modified) (1 diff)
-
src/firewall.c (modified) (1 diff)
-
src/firewall.h (modified) (1 diff)
-
src/fw_iptables.c (modified) (1 diff)
-
src/fw_iptables.h (modified) (1 diff)
-
src/gateway.c (modified) (1 diff)
-
src/gateway.h (modified) (1 diff)
-
src/http.c (modified) (1 diff)
-
src/http.h (modified) (1 diff)
-
src/httpd_thread.c (modified) (1 diff)
-
src/httpd_thread.h (modified) (1 diff)
-
src/ping_thread.c (modified) (1 diff)
-
src/ping_thread.h (modified) (1 diff)
-
src/safe.c (modified) (1 diff)
-
src/safe.h (modified) (1 diff)
-
src/util.c (modified) (1 diff)
-
src/util.h (modified) (1 diff)
-
src/wdctl.c (modified) (1 diff)
-
src/wdctl.h (modified) (1 diff)
-
src/wdctl_thread.c (modified) (1 diff)
-
src/wdctl_thread.h (modified) (1 diff)
-
wifidog.conf (modified) (1 diff)
-
wifidog.spec.in (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wifidog/AUTHORS
r69 r901 1 $ Header$1 $Id$ 2 2 3 3 Philippe April <papril777@yahoo.com> -
trunk/wifidog/ChangeLog
r840 r901 1 # $Header$ 1 # $Id$ 2 3 2006-01-17 Mina Naguib <mina@ilesansfil.org> 4 * Ingisgnificant cleanup of CVS artifacts after svn migration 5 2 6 2005-11-24 Philippe April <philippe@ilesansfil.org> 3 7 * Bad idea -
trunk/wifidog/FAQ
r515 r901 1 1 # 2 # $ Header$2 # $Id$ 3 3 # 4 4 # The latest version of this document lives at: -
trunk/wifidog/Makefile.am
r536 r901 1 # $ Header$1 # $Id$ 2 2 3 3 SUBDIRS = libhttpd src . doc -
trunk/wifidog/README
r473 r901 1 1 # 2 # $ Header$2 # $Id$ 3 3 # 4 4 -
trunk/wifidog/README.openwrt
r763 r901 1 $ Header$1 $Id$ 2 2 3 3 OpenWRT specific README … … 45 45 46 46 Once you have successfully compiled your buildroot, you can change 47 back to your wifidog CVScheckout directory and use the commands:47 back to your wifidog subversion checkout directory and use the commands: 48 48 49 49 ./ipkg/rules BUILDROOT=<path_to_openwrt_buildroot> -
trunk/wifidog/autogen.sh
r142 r901 2 2 # Run this to generate all the initial makefiles, etc. 3 3 # 4 # $ Header$4 # $Id$ 5 5 6 6 if [ -r Makefile ] -
trunk/wifidog/configure.in
r793 r901 1 1 ## -*-m4-*- 2 # $ Header$2 # $Id$ 3 3 4 4 dnl Process this file with autoconf to produce a configure script. -
trunk/wifidog/doc/README.developers.txt
r472 r901 1 1 2 $ Header$2 $Id$ 3 3 4 4 … … 19 19 - Please respect the intellectual property of others. You are not allowed to taint WiFiDog by including source code from projects that do not allow so. 20 20 - Keep in mind that this application will run on extremely simple embedded devices. The binary size needs to be small, the dependencies absolutely minimal, and the memory footprint negligible. 21 - Always place the CVS "Header" macro at the top of every file21 - Always place the subversion "Id" macro at the top of every file 22 22 - Since this is a collaborative project, please aim for clearness instead of cleverness when faced with a choice. 23 23 - If you must use some cleverness, please add appropriate clear comments. 24 - Please re-indent your code before committing to CVS- see the "Formatting Your Source Code" section in the GNU Coding Standards at http://www.gnu.org/prep/standards_toc.html - the entire document makes a good reading if you haven't read it before. Also see the "indent" program.24 - Please re-indent your code before committing to subversion - see the "Formatting Your Source Code" section in the GNU Coding Standards at http://www.gnu.org/prep/standards_toc.html - the entire document makes a good reading if you haven't read it before. Also see the "indent" program. 25 25 - Before writing any brand-new large chunks of code, make sure it's logic has been discussed with the other team of developers or included in the design stage. 26 26 -
trunk/wifidog/libhttpd/Makefile.am
r87 r901 1 1 # 2 # $ Header$2 # $Id$ 3 3 # 4 4 -
trunk/wifidog/src/Makefile.am
r467 r901 1 1 # 2 # $ Header$2 # $Id$ 3 3 # 4 4 -
trunk/wifidog/src/auth.c
r798 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file auth.c 23 23 @brief Authentication handling thread -
trunk/wifidog/src/auth.h
r274 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file auth.h 23 23 @brief Authentication handling thread -
trunk/wifidog/src/centralserver.c
r631 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file centralserver.c 23 23 @brief Functions to talk to the central server (auth/send stats/get rules/etc...) -
trunk/wifidog/src/centralserver.h
r477 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file centralserver.h 23 23 @brief Functions to talk to the central server (auth/send stats/get rules/etc...) -
trunk/wifidog/src/client_list.c
r765 r901 20 20 21 21 /* 22 * $ Header$22 * $Id$ 23 23 */ 24 24 /** @file client_list.c -
trunk/wifidog/src/client_list.h
r765 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file client_list.h 23 23 @brief Client List functions -
trunk/wifidog/src/commandline.c
r765 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file commandline.c 23 23 @brief Command line argument handling -
trunk/wifidog/src/commandline.h
r136 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file commandline.h 23 23 @brief Command line argument handling -
trunk/wifidog/src/common.h
r136 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file common.h 23 23 @brief Common constants and other bits -
trunk/wifidog/src/conf.c
r840 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file conf.c 23 23 @brief Config file parsing -
trunk/wifidog/src/conf.h
r840 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file conf.h 23 23 @brief Config file parsing -
trunk/wifidog/src/debug.c
r765 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file debug.c 23 23 @brief Debug output routines -
trunk/wifidog/src/debug.h
r136 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file debug.h 23 23 @brief Debug output routines -
trunk/wifidog/src/firewall.c
r799 r901 20 20 21 21 /* 22 * $Header: /cvsroot/wifidog/wifidog/src/firewall.c,v 1.32 2004/04/23 23 * 11:37:43 aprilp Exp $ 22 * $Id$ 24 23 */ 25 24 /** @internal -
trunk/wifidog/src/firewall.h
r422 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file firewall.h 23 23 @brief Firewall update functions -
trunk/wifidog/src/fw_iptables.c
r765 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @internal 23 23 @file fw_iptables.c -
trunk/wifidog/src/fw_iptables.h
r763 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file fw_iptables.h 23 23 @brief Firewall iptables functions -
trunk/wifidog/src/gateway.c
r840 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @internal 23 23 @file gateway.c -
trunk/wifidog/src/gateway.h
r136 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file gateway.h 23 23 @brief Main loop -
trunk/wifidog/src/http.c
r841 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file http.c 23 23 @brief HTTP IO functions -
trunk/wifidog/src/http.h
r840 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file http.h 23 23 @brief HTTP IO functions -
trunk/wifidog/src/httpd_thread.c
r274 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 23 23 /** @file httpd_thread.c -
trunk/wifidog/src/httpd_thread.h
r274 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file httpd_thread.h 23 23 @brief WiFiDog httpd worker thread -
trunk/wifidog/src/ping_thread.c
r799 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file ping_thread.c 23 23 @brief Periodically checks in with the central auth server to make sure everything is running properly. -
trunk/wifidog/src/ping_thread.h
r486 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file ping_thread.h 23 23 @brief WiFiDog heartbeat thread -
trunk/wifidog/src/safe.c
r765 r901 20 20 21 21 /* 22 * $ Header$22 * $Id$ 23 23 */ 24 24 /** -
trunk/wifidog/src/safe.h
r765 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file safe.h 23 23 @brief Safe versions of stdlib/string functions that error out and exit if memory allocation fails -
trunk/wifidog/src/util.c
r840 r901 20 20 21 21 /* 22 * $ Header$22 * $Id$ 23 23 */ 24 24 /** -
trunk/wifidog/src/util.h
r763 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file util.h 23 23 @brief Misc utility functions -
trunk/wifidog/src/wdctl.c
r765 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file wdctl.c 23 23 @brief Monitoring and control of wifidog, client part -
trunk/wifidog/src/wdctl.h
r765 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file wdctl.h 23 23 @brief WiFiDog monitoring client -
trunk/wifidog/src/wdctl_thread.c
r798 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file wdctl_thread.c 23 23 @brief Monitoring and control of wifidog, server part -
trunk/wifidog/src/wdctl_thread.h
r479 r901 19 19 \********************************************************************/ 20 20 21 /* $ Header$ */21 /* $Id$ */ 22 22 /** @file wdctl_thread.h 23 23 @brief WiFiDog monitoring thread -
trunk/wifidog/wifidog.conf
r799 r901 1 # $ Header$1 # $Id$ 2 2 # WiFiDog Configuration file 3 3 -
trunk/wifidog/wifidog.spec.in
r515 r901 1 # $ Header$1 # $Id$ 2 2 3 3 %define name wifidog
