- Timestamp:
- Jun 29, 2007, 4:20:51 PM (18 years ago)
- Children:
- cc10e52
- Parents:
- bbb9d5f
- Location:
- package/fwwif/src
- Files:
-
- 17 edited
-
Makefile (modified) (3 diffs)
-
c_chpw.c (modified) (1 diff)
-
c_chpw.h (modified) (1 diff)
-
chpw.ecpp (modified) (1 diff)
-
commit.ecpp (modified) (1 diff)
-
common.h (modified) (3 diffs)
-
footer.ecpp (modified) (1 diff)
-
fwwif.ecpp (modified) (1 diff)
-
fwws.css (modified) (1 diff)
-
header.ecpp (modified) (1 diff)
-
helper.c (modified) (2 diffs)
-
md5.c (modified) (1 diff)
-
md5.h (modified) (1 diff)
-
md5crypt.c (modified) (2 diffs)
-
md5crypt.h (modified) (1 diff)
-
mime.types (modified) (1 diff)
-
pwd_gensalt.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
package/fwwif/src/Makefile
rbbb9d5f r2eb5c5d 1 # $Id$ 2 #- 3 # This file is part of the FreeWRT Webinterface, which is copyrighted 4 # material, please see the LICENCE file in the fwwif source directory 5 # for details. 6 1 7 XARCH= mipsel 2 8 CDIAGFLAGS?= -Wall -Wextra -std=gnu99 … … 29 35 IMAGES= logo.svg favicon.ico 30 36 37 fwwif.o header.o footer.o commit.o: common.h 31 38 chpw.o c_chpw.o: c_chpw.h common.h 32 md5.o md5hl.o : md5.h common.h33 md5crypt.o pwd_gensalt.o c_chpw.o: md5crypt.h md5.hcommon.h39 md5.o md5hl.o md5crypt.o: md5.h common.h 40 md5crypt.o pwd_gensalt.o c_chpw.o: md5crypt.h common.h 34 41 35 42 md5hl.c: helper.c … … 41 48 fwwif.so: ${OBJS} 42 49 $(CXX) -o $@ -Wl,--start-group $(LDFLAGS) $^ -Wl,--end-group 43 ${STRIP} -R .comment $@ 50 ${STRIP} $@ # retain keywords 51 # ${STRIP} -R .comment $@ # strip off keywords 44 52 45 53 .SUFFIXES: .ecpp .gif .jpg .css .js .cpp -
package/fwwif/src/c_chpw.c
rbbb9d5f r2eb5c5d 32 32 #include "c_chpw.h" 33 33 #include "md5crypt.h" 34 35 __RCSID("$Id$"); 34 36 35 37 int -
package/fwwif/src/c_chpw.h
rbbb9d5f r2eb5c5d 1 /* $Id$ */ 2 1 3 __BEGIN_DECLS 2 4 int c_chpw(const char *, const char *); -
package/fwwif/src/chpw.ecpp
rbbb9d5f r2eb5c5d 25 25 #> 26 26 <%pre> 27 #include "common.h" 27 28 #include "c_chpw.h" 29 30 __RCSID("$Id$"); 28 31 </%pre> 29 32 <%args> -
package/fwwif/src/commit.ecpp
rbbb9d5f r2eb5c5d 25 25 #> 26 26 <%pre> 27 #include "common.h" 27 28 #include <stdlib.h> 28 extern "C" uint32_t arc4random(void);29 __RCSID("$Id$"); 29 30 </%pre> 30 31 <%args> -
package/fwwif/src/common.h
rbbb9d5f r2eb5c5d 1 /* $Id$ */ 2 1 3 /*- 2 4 * Copyright (c) 2007 … … 27 29 28 30 #include <sys/types.h> 31 #include <stdint.h> 29 32 30 33 #ifndef __BEGIN_DECLS … … 58 61 #endif 59 62 63 __BEGIN_DECLS 64 uint32_t arc4random(void); 65 __END_DECLS 66 60 67 #endif -
package/fwwif/src/footer.ecpp
rbbb9d5f r2eb5c5d 24 24 # of said person's immediate fault when using the work as intended. 25 25 #> 26 <%pre> 27 #include "common.h" 28 __RCSID("$Id$"); 29 </%pre> 26 30 <%args> 27 31 int show_validator = 1; -
package/fwwif/src/fwwif.ecpp
rbbb9d5f r2eb5c5d 24 24 # of said person's immediate fault when using the work as intended. 25 25 #> 26 <%pre> 27 #include "common.h" 28 __RCSID("$Id$"); 29 </%pre> 26 30 <& header title="main page"> 27 31 <h1>Welcome!</h1> -
package/fwwif/src/fwws.css
rbbb9d5f r2eb5c5d 1 1 /*- 2 2 * The FreeWRT Webinterface 3 * $Id$ 3 4 *- 4 5 * Copyright © 2007 -
package/fwwif/src/header.ecpp
rbbb9d5f r2eb5c5d 1 <%pre> 2 #include "common.h" 3 __RCSID("$Id$"); 4 </%pre> 1 5 <%cpp> 2 6 /* even this is broken; tntnet outputs an initial \n before this */ -
package/fwwif/src/helper.c
rbbb9d5f r2eb5c5d 11 11 */ 12 12 13 #include "common.h" 13 14 #include <sys/param.h> 14 15 #include <sys/stat.h> … … 24 25 25 26 __RCSID("$MirOS: src/lib/libc/hash/helper.c,v 1.5 2007/05/07 15:21:18 tg Exp $ helper for HASH hash"); 27 __RCSID("$Id$"); 26 28 27 29 /* ARGSUSED */ -
package/fwwif/src/md5.c
rbbb9d5f r2eb5c5d 18 18 */ 19 19 20 #include <sys/types.h>20 #include "common.h" 21 21 #include <string.h> 22 22 #include "md5.h" 23 24 __RCSID("$Id$"); 23 25 24 26 #define PUT_64BIT_LE(cp, value) do { \ -
package/fwwif/src/md5.h
rbbb9d5f r2eb5c5d 1 /** $Id$ */ 1 2 /** $MirOS: src/include/md5.h,v 1.2 2005/03/06 19:13:40 tg Exp $ */ 2 3 /* $OpenBSD: md5.h,v 1.16 2004/06/22 01:57:30 jfb Exp $ */ -
package/fwwif/src/md5crypt.c
rbbb9d5f r2eb5c5d 13 13 */ 14 14 15 #include "common.h" 15 16 #include <unistd.h> 16 17 #include <stdio.h> … … 18 19 #include "md5crypt.h" 19 20 #include <string.h> 21 #include "md5.h" 22 23 __RCSID("$Id$"); 20 24 21 25 static unsigned char itoa64[] = /* 0 ... 63 => ascii - 64 */ -
package/fwwif/src/md5crypt.h
rbbb9d5f r2eb5c5d 1 /* $Id$ */ 2 1 3 #ifndef MD5CRYPT_H 2 4 #define MD5CRYPT_H 3 4 #include "md5.h"5 5 6 6 __BEGIN_DECLS -
package/fwwif/src/mime.types
rbbb9d5f r2eb5c5d 1 # $Id$ 1 2 # $MirOS: src/usr.sbin/httpd/conf/mime.types,v 1.3 2006/09/20 23:45:04 tg Exp $ 2 3 # -
package/fwwif/src/pwd_gensalt.c
rbbb9d5f r2eb5c5d 37 37 #include "md5crypt.h" 38 38 39 __RCSID("$Id$"); 40 39 41 int 40 42 pwd_gensalt(char *salt, int saltlen)
Note:
See TracChangeset
for help on using the changeset viewer.
