⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 changelog.0

📁 linux下常用的网络工具的代码
💻 0
📖 第 1 页 / 共 5 页
字号:
Sat Aug  8 17:35:14 1998  Joel N. Weber II  <devnull@theobromine.ai.mit.edu>	* ftpd/ftpd.c (anonymous_login_name): New variable.	(main): Allow anonymous_login_name to be set with -a flag.	(user): Use anonymous_login_name.Sun Apr 26 19:37:09 1998  Joel N. Weber II  <nemo@nautilus.sub>	* syslogd/syslogd.c (logmsg): When opening the console device, 	pass the O_NOCTTY flag to avoid acquiring a controlling tty.		(fprintlog): When opening a log file, pass the O_CREAT flags and	O_NOCTTY flags.	(cfline): Likewise.Sat Apr 18 11:54:56 1998  Joel N. Weber II  <nemo@nautilus.sub>	* syslogd/syslogd.c (cfline): Allow either spaces or tabs in 	/etc/syslog.conf; previously, only tabs were allowed for 	seperators.Sun Apr 12 19:57:51 1998  Joel N. Weber II  <nemo@nautilus.sub>	* whois/whois-servers: Added some comments explaining the search 	path that the GNU whois client uses.Fri Apr 10 11:13:51 1998  Joel N. Weber II  <nemo@nautilus.sub>	* Changed the Makefile.am in daemon subdirectories to use	inetdaemondir instead of bindir.Fri Apr 10 19:53:37 1998  Joel N. Weber II  <nemo@koa.iolani.honolulu.hi.us>	* libinetutils/opieclient.c: Random cosmetic changes.		[HAVE_CONFIG_H]: Inclued config.h.Fri Apr 10 11:13:51 1998  Joel N. Weber II  <nemo@nautilus.sub>	* whois/main.c (main): Use inetutils_package and inetutils_version 	rather than PACKAGE and VERSION.		Check the compiled in config file as the second-to-last resort.		(config_buffer_netwhois): New function, mostly created by ripping code	out of config_file_netwhois.		(config_file_netwhois): Use config_buffer_netwhois.	* whois/Makefile.am (whois_SOURCES): Added config.c.		(EXTRA_DIST): Added gen-config-c.		(config.c): Added a rule to generate it from whois-servers using the	gen-config-c script.	* Makefile.am (SUBDIRS): Added ping.	* configure.in: Call IU_ENABLE_CLIENT and AC_SUBST for whois.		Update the comment above the AC_SUBST calls for BUILD_<whatever>; 	the change of moving AC_SUBST out of IU_ENABLE_FOO wasn't actually 	necissary.		Test for -lz, since I will probably add code that uses it 	eventually.		Supply a value for inetdaemondir.Fri Apr  3 17:11:44 1998  Joel N. Weber II  <nemo@koa.iolani.honolulu.hi.us>	* libtelnet/Makefile.am (libtelnet_a_SOURCES): Removed 	krb4encpwd.c rsaencpwd.c spx.c; they don't meet our definition of 	`free software'.Thu Mar 26 20:40:06 1998  Joel N. Weber II  <nemo@nautilus.sub>	* */Makefile.am: Use @BUILD_FOO@ to determine whether to build the	program.	* configure.in: Call IU_ENABLE_CLIENT for ping.  Call AC_SUBST for 	BUILD_PING.	* glob/Makefile.am (AUTOMAKE_OPTIONS): Removed; the options are 	set adaquaely in ../Makefile.am.		(noinst_LIBRARIES): Use @BUILD_LIBGLOB@ rather than libglob.a		(EXTRA_LIBRARIES): Added libglob.a	* Makefile.am (DISTCLEANFILES): Added `include/*.h include/*/*.h 	include/stamp-h'.	* acinclude.m4 (IU_ENABLE_FOO): Fix syntax errors.  Remove call to 	AC_SUBST; there are now many explicit calls to AC_SUBST to make 	automake happy.		(IU_ENABLE_CLIENT): Use `clients' rather than `client' as the	second arg.	(IU_ENABLE_SERVER): Use `servers' rather than `server' as the	second arg.	* configure.in: For every IU_ENABLE_CLIENT and IU_ENABLE_SERVER 	call, and an AC_SUBST call for the BUILD_FOO variable.	* telnet/main.c [ENCRYPTION || AUTHENTICATION || TN3270] (help): 	Added a second arg to the call to `putc'.	* configure.in: Undo Jeff's previous change to this file, so that 	changing the version number will not force me to wait 20+ minutes 	(or so it seems) for the inetutils to be rebuilt after I change 	the version number.		Rearrange a few macro calls that were added for the glob library 	so that autoconf doesn't complain that they're out of order.		Removed some more of the old SUBDIRS cruft.		When setting enable_talk to `no' after not finding curses, also 	set BUILD_TALK to the empty string.		Set the BUILD_LIBGLOB variable appropriately.	* ping/ping.c (version.h): Include it.		(show_usage): Use inetutils_bugaddr.		(main): Use inetutils_version rather than VERSION.  Don't use	GNU_PACKAGE.Thu Mar 26 20:47:00 1998  Jeff Bailey  <jbailey@gnu.org>	* configure.in: put VERSION, PACKAGE, and GNU_PACKAGE back in.	* ping/ping.c:  Create	* ping/Makefile.am: Update with ping.cThu Mar 26 00:08:39 1998  Joel N. Weber II  <nemo@nautilus.sub>	* ftp/main.c (cmdscanner): Added new code that is used to replace 	some old code iff HAVE_LIBREADLINE.	* ftp/ftp_var.h [HAVE_LIBREADLINE]: Declare `char *line' instead 	of `char line[200]'.	* ftp/Makefile.am (LDADD): Added `$(LIBTERMCAP)'.	* Makefile.am (SUBDIRS): Added whois.		(DISTCLEANFILES): Added `pathdefs.make paths.defs'.	* configure.in: Removed some old cruft related to the old system 	of not building some directoies.		Added calls to IU_ENABLE_SERVER and IU_ENABLE_CLIENT.		Added checks for libtermcap, libreadline, and libopie.		Generate whois/Makefile.	* acinclude.m4 (IU_ENABLE_FOO): New AC_DEFUN.	(IU_ENABLE_CLIENT): Likewise.	(IU_ENABLE_SERVER): Likewise.Tue Mar 24 11:46:55 1998  Joel N. Weber II  <nemo@koa.iolani.honolulu.hi.us>	* Ran the command for i in `grep man_MANS */Makefile.am|awk -F: '{	print $1 }'`; do (echo;echo 'EXTRA_DIST = $(man_MANS)') >> $i;	done		* configure.in (AM_INIT_AUTOMAKE): Added a third argument to 	suppress VERSION and PACKAGE symbols from appearing in config.h		Added much code that was formerly in glob/configure.in, before I 	removed that file.		Add glob/Makefile to the `AC_OUTPUT' call.	* headers/Makefile.am (EXTRA_DIST): Added `confpaths.h.in'.	* ftp/Makefile.am (LDADD): Added `$(LIBGLOB)'.	* Makefile.am (EXTRA_DIST): Added paths.		(SUBDIRS): Added glob.	* uucpd/Makefile.am (INCLUDES): Added `$(PATHDEF_TTY)'.		(LDADD): Added `-L../libinetutils -linetutils'.	* telnetd/Makefile.am: Added a line that reads `@PATHDEFS_MAKE@'.		(INCLUDES): Added `$(PATHDEF_TTY) $(PATHDEF_LOGIN)'.	* talkd/Makefile.am: Added a line that reads `@PATHDEFS_MAKE@'.		(INCLUDES): Added `$(PATHDEF_DEV)'.	* syslogd/Makefile.am: Added a line that reads `@PATHDEFS_MAKE@'.		(INCLUDES): Added `$(PATHDEF_LOG) $(PATHDEF_LOGCONF) $(PATHDEF_LOGPID)	$(PATHDEF_CONSOLE)'.	* rshd/Makefile.am (INCLUDES): Added `$(PATHDEF_BSHELL) 	$(PATHDEF_NOLOGIN) $(PATHDEF_DEFPATH)'.		Added a line reading `@PATHDEFS_MAKE@'.	* rlogind/Makefile.am (INCLUDES): Added `$(PATHDEF_DEV) 	$(PATHDEF_LOGIN)'.		Added a line reading `@PATHDEFS_MAKE@'.	* rexecd/Makefile.am (INCLUDES): Added `$(PATHDEF_DEFPATH) 	$(PATHDEF_BSHELL)'.		(LDADD): Added `-L../libinetutils -linetutils'.		Added a line reading `@PATHDEFS_MAKE@'.	* rcp/Makefile.am (INCLUDES): Added `$(PATHDEF_BSHELL)'.	* libinetutils/Makefile.am (INCLUDES): Added `$(PATHDEF_TTY_PFX) 	$(PATHDEF_DEVNULL) $(PATHDEF_HEQUIV)'.	* inetd/Makefile.am (LDADD): Added `-L../libinetutils 	-linetutils'.	* ftpd/Makefile.am (INCLUDES): Added `$(PATHDEF_DEVNULL) 	$(PATHDEF_NOLOGIN) $(PATHDEF_BSHELL)'.	* ftp/Makefile.am (INCLUDES): Added `$(PATHDEF_TMP) 	$(PATHDEF_BSHELL)'.		Added a line reading `@PATHDEFS_MAKE@'.Tue Mar 24 00:28:27 1998  Joel N. Weber II  <nemo@nautilus.sub>	* telnet/Makefile.am (noinst_HEADERS): Remove krb4-proto.h; 	Kerberos 4 doesn't meet our definition of `free software'.		(INCLUDES): Add `-DTERMCAP -DLINEMODE -DKLUDGELINEMODE -DENV_HACK'.		(LDADD): Add `-L../libinetutils -L../libtelnet -linetutils -ltelnet	$(LIBTERMCAP) $(LIBCRYPT)'.		(LIBTERMCAP): Set make variable from coresponding configure variable	(LIBCRYPT): Likewise.	* uucpd/Makefile.am (INCLUDES): Added `$(PATHDEF_UUCICO)'.		Added a line that reads `@PATHDEFS_MAKE@'.	* tftpd/Makefile.am (noinst_HEADERS): Removed tftpsubs.h		(LDADD): Added `-L../libinetutils -linetutils'.	* tftp/Makefile.am (tftp_SOURCES): Removed tftpsubs.c; that file 	has been moved to ../libinetutils.		(noinst_HEADERS): Removed tftpsubs.h; that file has been moved to	../headers.		(LDADD): Added `-L../libinetutils -linetutils'.Mon Mar 23 11:47:37 1998  Joel N. Weber II  <nemo@nautilus.sub>	* telnetd/Makefile.am (LIBTERMCAP, LIBCRYPT, LIBUTIL): Set make 	variables corresponding to the configure variables.		(LDADD): Added `-L../libinetutils -L../libtelnet -linetutils -ltelnet	$(LIBTERMCAP) $(LIBUTIL) $(LIBCRYPT)'.	* talkd/Makefile.am (LDADD): Added `-L../libinetutils 	-linetutils'.	* talk/Makefile.am (INCLUDES): Added `$(NCURSES_INCLUDE)'.		(LDADD): Added `$(LIBCURSES) -L../libinetutils -linetutils'.	* syslogd/Makefile.am (LDADD): Added `-L../libinetutils 	-linetutils'.	* rshd/Makefile.am (LDADD): Added `-L../libinetutils -linetutils'.	* rlogin/Makefile.am (LDADD): Added `-L../libinetutils 	-linetutils'.	* rlogind/Makefile.am (LDADD): Added `-L../libinetutils 	-linetutils'.	* rcp/Makefile.am (INCLUDES): Added `$(PATHDEF_RSH) 	$(PATHDEF_CP)'.		(LDADD): Added `-L../libinetutils -linetutils'.		Added a line `@PATHDEFS_MAKE@'.	* ftpd/Makefile.am (INCLUDES): Added `$(PATHDEF_FTPWELCOME) 	$(PATHDEF_FTPUSERS) $(PATHDEF_FTPLOGINMESG)'.		(LDADD): Added `-L../libinetutils -L../libtelnet -linetutils -ltelnet'.		Added the line `@PATHDEFS_MAKE@'.	* ftp/Makefile.am (LDADD): Added ../libinetutils -linetutils.	* libinetutils/Makefile.am (libinetutils_a_SOURCES): Removed 	version.c and all the files covered by @LIBOBS@		(libinetutils_a_LIBADD): Add @LIBOBJS@		(noinst_HEADERS): Removed version.h	* configure.in: Removed some old, commented-out cruft.		Removed some old code related to the @DIRS@ hack; that code will 	not be needed in the future.		Reinstalled some code that deals with having both a `headers' and 	`include' tree.		Removed the iruserok from one of the two places where it appeared 	in the AC_REPLACE_FUNCS call.		Reinstalled the line `AC_REPLACE_FUNCS(revoke)'; it had been 	commented out, but I see no ChangeLog entry explaining why, and I 	suspect that it should not have been commented out.		Changed the message that was `checking for system glob is ok' to 	`checking for ok system glob'.		Call `AC_SUBST(VERSION)'.		In the call to AC_OUTPUT, added version.h.Sun Mar 22 16:13:49 1998  Joel N. Weber II  <nemo@nautilus.sub>	* Makefile.am (SUBDIRS): Use an explicit list, rather than @DIRS@.	

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -