DragonFly-2.3.1.768.g068e7 master crypto/telnet/arpa telnet.h cr

看板DFBSD_commit作者時間16年前 (2009/07/12 18:32), 編輯推噓0(000)
留言0則, 0人參與, 最新討論串1/1
commit 068e70615cb2d4761d27f65ed0d00daf92ab7bbc Author: Peter Avalos <pavalos@theshell.com> Date: Sat Jul 11 15:50:58 2009 -1000 Stop building multiple versions of telnet. It's ok to move this code outside of crypto/ because it doesn't actually contain any crypto -- only routines that call the crypto functions. This keeps the code centralized, and the usual make.conf defines will control what gets built (the default is still non-kerberos and with crypto). Summary of changes: crypto/telnet/arpa/telnet.h | 343 --- crypto/telnet/libtelnet/genget.c | 100 - crypto/telnet/libtelnet/getent.c | 70 - crypto/telnet/libtelnet/misc-proto.h | 81 - crypto/telnet/libtelnet/misc.c | 102 - crypto/telnet/libtelnet/misc.h | 42 - crypto/telnet/telnet/authenc.c | 107 - crypto/telnet/telnet/commands.c | 3005 ---------------------- crypto/telnet/telnet/defines.h | 57 - crypto/telnet/telnet/externs.h | 492 ---- crypto/telnet/telnet/fdset.h | 49 - crypto/telnet/telnet/general.h | 45 - crypto/telnet/telnet/main.c | 373 --- crypto/telnet/telnet/network.c | 177 -- crypto/telnet/telnet/ring.c | 318 --- crypto/telnet/telnet/ring.h | 108 - crypto/telnet/telnet/sys_bsd.c | 1144 -------- crypto/telnet/telnet/telnet.1 | 1425 ---------- crypto/telnet/telnet/telnet.c | 2390 ----------------- crypto/telnet/telnet/terminal.c | 236 -- crypto/telnet/telnet/types.h | 52 - crypto/telnet/telnet/utilities.c | 907 ------- crypto/telnet/telnetd/defs.h | 259 -- crypto/telnet/telnetd/ext.h | 221 -- crypto/telnet/telnetd/global.c | 48 - crypto/telnet/telnetd/pathnames.h | 57 - crypto/telnet/telnetd/slc.c | 480 ---- crypto/telnet/telnetd/state.c | 1671 ------------ crypto/telnet/telnetd/sys_term.c | 1350 ---------- crypto/telnet/telnetd/telnetd.8 | 588 ----- crypto/telnet/telnetd/telnetd.c | 1222 --------- crypto/telnet/telnetd/telnetd.h | 50 - crypto/telnet/telnetd/termstat.c | 628 ----- crypto/telnet/telnetd/utility.c | 1077 -------- lib/libtelnet/Makefile | 24 +- {crypto/telnet => lib}/libtelnet/auth-proto.h | 0 {crypto/telnet => lib}/libtelnet/auth.c | 0 {crypto/telnet => lib}/libtelnet/auth.h | 0 {crypto/telnet => lib}/libtelnet/enc-proto.h | 0 {crypto/telnet => lib}/libtelnet/enc_des.c | 0 {crypto/telnet => lib}/libtelnet/encrypt.c | 0 {crypto/telnet => lib}/libtelnet/encrypt.h | 0 lib/libtelnet/genget.c | 4 +- lib/libtelnet/getent.c | 4 +- {crypto/telnet => lib}/libtelnet/kerberos5.c | 0 {crypto/telnet => lib}/libtelnet/key-proto.h | 0 {crypto/telnet => lib}/libtelnet/krb4encpwd.c | 0 lib/libtelnet/misc-proto.h | 4 +- lib/libtelnet/misc.c | 34 +- {crypto/telnet => lib}/libtelnet/pk.c | 0 {crypto/telnet => lib}/libtelnet/pk.h | 0 {crypto/telnet => lib}/libtelnet/read_password.c | 0 {crypto/telnet => lib}/libtelnet/rsaencpwd.c | 0 {crypto/telnet => lib}/libtelnet/sra.c | 0 libexec/telnetd/Makefile | 39 +- {crypto/telnet => libexec}/telnetd/authenc.c | 0 libexec/telnetd/defs.h | 4 +- libexec/telnetd/ext.h | 18 +- libexec/telnetd/global.c | 4 +- libexec/telnetd/pathnames.h | 4 +- libexec/telnetd/slc.c | 4 +- libexec/telnetd/state.c | 125 +- libexec/telnetd/sys_term.c | 151 ++- libexec/telnetd/telnetd.8 | 87 +- libexec/telnetd/telnetd.c | 117 +- libexec/telnetd/telnetd.h | 4 +- libexec/telnetd/termstat.c | 26 +- libexec/telnetd/utility.c | 197 ++- secure/Makefile.inc | 7 - secure/lib/Makefile | 3 - secure/lib/libtelnet/Makefile | 21 - secure/libexec/Makefile | 3 - secure/libexec/telnetd/Makefile | 26 - secure/usr.bin/Makefile | 3 - secure/usr.bin/telnet/Makefile | 22 - usr.bin/telnet/Makefile | 37 +- usr.bin/telnet/authenc.c | 74 +- usr.bin/telnet/commands.c | 283 ++- usr.bin/telnet/defines.h | 4 +- usr.bin/telnet/externs.h | 8 +- usr.bin/telnet/main.c | 95 +- usr.bin/telnet/network.c | 8 +- usr.bin/telnet/ring.c | 49 +- usr.bin/telnet/ring.h | 13 +- usr.bin/telnet/sys_bsd.c | 5 +- usr.bin/telnet/telnet.1 | 19 +- usr.bin/telnet/telnet.c | 168 ++- usr.bin/telnet/terminal.c | 24 +- usr.bin/telnet/utilities.c | 149 ++- 89 files changed, 1597 insertions(+), 19548 deletions(-) delete mode 100644 crypto/telnet/arpa/telnet.h delete mode 100644 crypto/telnet/libtelnet/genget.c delete mode 100644 crypto/telnet/libtelnet/getent.c delete mode 100644 crypto/telnet/libtelnet/misc-proto.h delete mode 100644 crypto/telnet/libtelnet/misc.c delete mode 100644 crypto/telnet/libtelnet/misc.h delete mode 100644 crypto/telnet/telnet/authenc.c delete mode 100644 crypto/telnet/telnet/commands.c delete mode 100644 crypto/telnet/telnet/defines.h delete mode 100644 crypto/telnet/telnet/externs.h delete mode 100644 crypto/telnet/telnet/fdset.h delete mode 100644 crypto/telnet/telnet/general.h delete mode 100644 crypto/telnet/telnet/main.c delete mode 100644 crypto/telnet/telnet/network.c delete mode 100644 crypto/telnet/telnet/ring.c delete mode 100644 crypto/telnet/telnet/ring.h delete mode 100644 crypto/telnet/telnet/sys_bsd.c delete mode 100644 crypto/telnet/telnet/telnet.1 delete mode 100644 crypto/telnet/telnet/telnet.c delete mode 100644 crypto/telnet/telnet/terminal.c delete mode 100644 crypto/telnet/telnet/types.h delete mode 100644 crypto/telnet/telnet/utilities.c delete mode 100644 crypto/telnet/telnetd/defs.h delete mode 100644 crypto/telnet/telnetd/ext.h delete mode 100644 crypto/telnet/telnetd/global.c delete mode 100644 crypto/telnet/telnetd/pathnames.h delete mode 100644 crypto/telnet/telnetd/slc.c delete mode 100644 crypto/telnet/telnetd/state.c delete mode 100644 crypto/telnet/telnetd/sys_term.c delete mode 100644 crypto/telnet/telnetd/telnetd.8 delete mode 100644 crypto/telnet/telnetd/telnetd.c delete mode 100644 crypto/telnet/telnetd/telnetd.h delete mode 100644 crypto/telnet/telnetd/termstat.c delete mode 100644 crypto/telnet/telnetd/utility.c rename {crypto/telnet => lib}/libtelnet/auth-proto.h (100%) rename {crypto/telnet => lib}/libtelnet/auth.c (100%) rename {crypto/telnet => lib}/libtelnet/auth.h (100%) rename {crypto/telnet => lib}/libtelnet/enc-proto.h (100%) rename {crypto/telnet => lib}/libtelnet/enc_des.c (100%) rename {crypto/telnet => lib}/libtelnet/encrypt.c (100%) rename {crypto/telnet => lib}/libtelnet/encrypt.h (100%) rename {crypto/telnet => lib}/libtelnet/kerberos5.c (100%) rename {crypto/telnet => lib}/libtelnet/key-proto.h (100%) rename {crypto/telnet => lib}/libtelnet/krb4encpwd.c (100%) rename {crypto/telnet => lib}/libtelnet/pk.c (100%) rename {crypto/telnet => lib}/libtelnet/pk.h (100%) rename {crypto/telnet => lib}/libtelnet/read_password.c (100%) rename {crypto/telnet => lib}/libtelnet/rsaencpwd.c (100%) rename {crypto/telnet => lib}/libtelnet/sra.c (100%) rename {crypto/telnet => libexec}/telnetd/authenc.c (100%) delete mode 100644 secure/lib/libtelnet/Makefile delete mode 100644 secure/libexec/telnetd/Makefile delete mode 100644 secure/usr.bin/telnet/Makefile http://gitweb.dragonflybsd.org/dragonfly.git/commitdiff/068e70615cb2d4761d27f65ed0d00daf92ab7bbc -- DragonFly BSD source repository
文章代碼(AID): #1AMRkeLd (DFBSD_commit)