add the 'ead' package (emergency access daemon),
authornbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 24 Dec 2008 10:42:12 +0000 (10:42 +0000)
committernbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73>
Wed, 24 Dec 2008 10:42:12 +0000 (10:42 +0000)
commit85f89d5d09dac0d926aaead2615b154ff4beb65a
tree91368c1d3b51e419ca42ee0196df3553a19b976e
parent2b020ab72106f0529f63a2c9c27ff4933f65494e
add the 'ead' package (emergency access daemon),
which can provide remote access to your device, even if the ip
and firewall settings are broken

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@13738 3c298f89-4303-0410-b956-a3cf2f4a3e73
69 files changed:
package/ead/Makefile [new file with mode: 0644]
package/ead/src/Makefile [new file with mode: 0644]
package/ead/src/aes.c [new file with mode: 0644]
package/ead/src/ead-client.c [new file with mode: 0644]
package/ead/src/ead-crypt.c [new file with mode: 0644]
package/ead/src/ead-crypt.h [new file with mode: 0644]
package/ead/src/ead-pcap.h [new file with mode: 0644]
package/ead/src/ead.c [new file with mode: 0644]
package/ead/src/ead.h [new file with mode: 0644]
package/ead/src/filter.c [new file with mode: 0644]
package/ead/src/libbridge.h [new file with mode: 0644]
package/ead/src/libbridge_init.c [new file with mode: 0644]
package/ead/src/libbridge_private.h [new file with mode: 0644]
package/ead/src/list.h [new file with mode: 0644]
package/ead/src/passwd [new file with mode: 0644]
package/ead/src/pfc.c [new file with mode: 0644]
package/ead/src/pw_encrypt_md5.c [new file with mode: 0644]
package/ead/src/sha1.c [new file with mode: 0644]
package/ead/src/tinysrp/Makefile.am [new file with mode: 0644]
package/ead/src/tinysrp/Makefile.in [new file with mode: 0644]
package/ead/src/tinysrp/Notes [new file with mode: 0644]
package/ead/src/tinysrp/acconfig.h [new file with mode: 0644]
package/ead/src/tinysrp/acinclude.m4 [new file with mode: 0644]
package/ead/src/tinysrp/aclocal.m4 [new file with mode: 0644]
package/ead/src/tinysrp/bn.h [new file with mode: 0644]
package/ead/src/tinysrp/bn_add.c [new file with mode: 0644]
package/ead/src/tinysrp/bn_asm.c [new file with mode: 0644]
package/ead/src/tinysrp/bn_ctx.c [new file with mode: 0644]
package/ead/src/tinysrp/bn_div.c [new file with mode: 0644]
package/ead/src/tinysrp/bn_exp.c [new file with mode: 0644]
package/ead/src/tinysrp/bn_lcl.h [new file with mode: 0644]
package/ead/src/tinysrp/bn_lib.c [new file with mode: 0644]
package/ead/src/tinysrp/bn_mul.c [new file with mode: 0644]
package/ead/src/tinysrp/bn_prime.h [new file with mode: 0644]
package/ead/src/tinysrp/bn_shift.c [new file with mode: 0644]
package/ead/src/tinysrp/bn_sqr.c [new file with mode: 0644]
package/ead/src/tinysrp/bn_word.c [new file with mode: 0644]
package/ead/src/tinysrp/clitest.c [new file with mode: 0644]
package/ead/src/tinysrp/config.h.in [new file with mode: 0644]
package/ead/src/tinysrp/configure [new file with mode: 0755]
package/ead/src/tinysrp/configure.in [new file with mode: 0644]
package/ead/src/tinysrp/install-sh [new file with mode: 0755]
package/ead/src/tinysrp/missing [new file with mode: 0755]
package/ead/src/tinysrp/mkinstalldirs [new file with mode: 0755]
package/ead/src/tinysrp/srvtest.c [new file with mode: 0644]
package/ead/src/tinysrp/stamp-h.in [new file with mode: 0644]
package/ead/src/tinysrp/t_client.c [new file with mode: 0644]
package/ead/src/tinysrp/t_client.h [new file with mode: 0644]
package/ead/src/tinysrp/t_conf.c [new file with mode: 0644]
package/ead/src/tinysrp/t_conv.c [new file with mode: 0644]
package/ead/src/tinysrp/t_defines.h [new file with mode: 0644]
package/ead/src/tinysrp/t_getconf.c [new file with mode: 0644]
package/ead/src/tinysrp/t_getpass.c [new file with mode: 0644]
package/ead/src/tinysrp/t_math.c [new file with mode: 0644]
package/ead/src/tinysrp/t_misc.c [new file with mode: 0644]
package/ead/src/tinysrp/t_pw.c [new file with mode: 0644]
package/ead/src/tinysrp/t_pwd.h [new file with mode: 0644]
package/ead/src/tinysrp/t_read.c [new file with mode: 0644]
package/ead/src/tinysrp/t_read.h [new file with mode: 0644]
package/ead/src/tinysrp/t_server.c [new file with mode: 0644]
package/ead/src/tinysrp/t_server.h [new file with mode: 0644]
package/ead/src/tinysrp/t_sha.c [new file with mode: 0644]
package/ead/src/tinysrp/t_sha.h [new file with mode: 0644]
package/ead/src/tinysrp/t_truerand.c [new file with mode: 0644]
package/ead/src/tinysrp/tconf.c [new file with mode: 0644]
package/ead/src/tinysrp/tinysrp.c [new file with mode: 0644]
package/ead/src/tinysrp/tinysrp.h [new file with mode: 0644]
package/ead/src/tinysrp/tpasswd [new file with mode: 0644]
package/ead/src/tinysrp/tphrase.c [new file with mode: 0644]