Changeset 281
- Timestamp:
- 11/18/04 22:58:24 (4 years ago)
- Files:
-
- trunk/wifidog/ChangeLog (modified) (1 diff)
- trunk/wifidog/configure.in (modified) (1 diff)
- trunk/wifidog/ipkg/rules (modified) (4 diffs)
- trunk/wifidog/src/ping_thread.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/wifidog/ChangeLog
r277 r281 1 1 # $Header$ 2 2 2004-11-18 Benoit Gr�ire <bock@step.polymtl.ca> 3 * src/ping_thread.c: Merge phil's bug fixes from stable branch 4 * ipkg/rules: Merge phil's bug fixes from stable branch 5 * configure.in: Set version to 1.1.0alpha 6 3 7 2004-11-18 Alexandre Carmel-Veilleux <acv@acv.ca> 4 8 * src/fw_iptables.[ch]: Merged in Phil's patch. trunk/wifidog/configure.in
r261 r281 20 20 21 21 WIFIDOG_MAJOR_VERSION=1 22 WIFIDOG_MINOR_VERSION= 023 WIFIDOG_MICRO_VERSION= 2-pre122 WIFIDOG_MINOR_VERSION=1 23 WIFIDOG_MICRO_VERSION=0alpha 24 24 WIFIDOG_VERSION=$WIFIDOG_MAJOR_VERSION.$WIFIDOG_MINOR_VERSION.$WIFIDOG_MICRO_VERSION 25 25 trunk/wifidog/ipkg/rules
r258 r281 46 46 build-ipkg-utils-stamp: 47 47 $(MAKE) -C $(BUILDROOT) ipkg-utils 48 49 48 touch build-ipkg-utils-stamp 50 49 … … 76 75 cp $(CURDIR)/scripts/openwrt/S65wifidog $(TMP_DIR)/etc/init.d 77 76 chmod +x $(TMP_DIR)/etc/init.d/S65wifidog 78 77 79 78 install-wifidog: 80 79 mkdir -p $(TMP_DIR)/usr/bin … … 83 82 $(STRIP) $(TMP_DIR)/usr/bin/wifidog 84 83 $(STRIP) $(TMP_DIR)/usr/bin/wdctl 85 84 86 85 install-iptables: 87 86 mkdir -p $(TMP_DIR)/usr/lib/iptables … … 107 106 echo "Description: The WiFiDog project is a complete and embeedable captive portal solution for wireless community groups or individuals who wish to open a free HotSpot while still preventing abuse of their Internet connection." >> $(TMP_DIR)/CONTROL/control 108 107 echo "Source: http://www.ilesansfil.org/wiki/WiFiDog" >> $(TMP_DIR)/CONTROL/control 109 echo "/etc/wifidog.conf" > >$(TMP_DIR)/CONTROL/conffiles108 echo "/etc/wifidog.conf" > $(TMP_DIR)/CONTROL/conffiles 110 109 $(IPKG_BUILD) -c -o root -g root $(TMP_DIR) $(CURDIR) 111 110 trunk/wifidog/src/ping_thread.c
r277 r281 135 135 memcpy(auth_server->last_ip, h_addr, sizeof(struct in_addr)); 136 136 } else { 137 137 138 for (i = 0; i < sizeof(struct in_addr) 138 139 && (*((char *)auth_server->last_ip + i) 139 140 == *((char *)h_addr + i)); i++); 140 141 if (i < sizeof(struct in_addr)) { 142 memcpy(auth_server->last_ip, h_addr, sizeof(struct in_addr)); 141 143 fw_clear_authservers(); 142 144 fw_set_authservers();
