summaryrefslogtreecommitdiff
path: root/usr.bin/telnet
AgeCommit message (Collapse)Author
2009-10-28rcsid[] and sccsid[] and copyright[] are essentially unmaintained (andTheo de Raadt
unmaintainable). these days, people use source. these id's do not provide any benefit, and do hurt the small install media (the 33,000 line diff is essentially mechanical) ok with the idea millert, ok dms
2009-08-06fix typo in argument name for a recently added option.Igor Sobrado
2009-06-05tweak -V;Jason McIntyre
2009-06-05Last but not least. Telnet -V rdomain to connect to systems in other routingClaudio Jeker
domains.
2009-04-28replacing malloc/realloc dance, by only one reallocCharles Longeau
While there, also move a variable declaration, in the #ifdef block it is used ok gilles@ millert@
2009-04-27Remove unused _hostname[] variable. ok millert@Matthieu Herrb
2007-10-17remove "unused variable" warningsCharles Longeau
tested by deraadt@ on a gcc2 arch looks ok ray@ ok deraadt@
2007-08-06the ellipsis is not an optional argument; while here, sync the usageIgor Sobrado
and synopsis of commands lots of good ideas by jmc@ ok jmc@
2007-05-31convert to new .Dd format;Jason McIntyre
2007-03-15telnet.1: sort options; from Igor SobradoJason McIntyre
main.c: whack most of usage(), and have different usage() depending whether this is invoked as telnet or tn3270; help otto; ok millert
2006-12-21'immediatly' -> 'immediately' in comments.Kenneth R Westerback
2006-02-01double semicolon; from Daniel Matic in PR 4929Otto Moerbeek
2006-01-14Properly handle failure binding to a local interface (using the -bOtto Moerbeek
option). Problem found by David Hill <dhill at mindcry dot org>; ok millert@
2005-05-24more files neededTheo de Raadt
2005-05-24copy files from telnetd that were accessed via .PATH; now we have themTheo de Raadt
here, and these programs are independent of each other ... and telnetd can go away for real sometime (just tree-delinked for now)
2005-02-27- only send exported vars (based on a diff from Solar Designer)Otto Moerbeek
- fix some buffer overflows (also some Solar Designer input) ok deraadt@ cloder@
2004-11-17remove NI_WITHSCOPEID (which is not standard)Jun-ichiro itojun Hagino
2004-01-03missing proto; ok hinPeter Valchev
2003-12-28Introduce -4 and -6: options to force usage of IPv4 or IPv6 only.Otto Moerbeek
From PR 1974. ok henning@ jose@
2003-11-08typos from Jonathon Gray;Jason McIntyre
2003-10-04negotation -> negotiation;Jason McIntyre
from Marc Balmer
2003-09-07escape `.' to avoid a double space;Jason McIntyre
2003-09-04put escapes in the right place;Jason McIntyre
(i.e. stuff I got wrong the first time, or missed) this includes some .Cd's with missing quotes and .Nm abuse in man4;
2003-07-25remove some obsolete kerberosIV references;Jason McIntyre
ok hin@
2003-07-16some minor DPADD changesTheo de Raadt
2003-07-15stop using libcom_err, it is built into krb5Theo de Raadt
2003-06-11de-registerTheo de Raadt
2003-06-10- section reorderJason McIntyre
- COMPATIBILITY merge - macro cleanup - kill whitespace at EOL - new sentence, new line ssh pages ok markus@
2003-06-03Remove the advertising clause in the UCB license which BerkeleyTodd C. Miller
rescinded 22 July 1999. Proofed by myself and Theo.
2003-05-14Removed krb4 support.Magnus Holmberg
2003-05-14Get rid of libtelnet, it is compiled into the tree programsHans Insulander
(telnetd, telnet and tn3270) that use them instead. This gets rid of a really hairy dependency between telnet and libtelnet. ok millert@
2003-04-25check asprintf return value for error, as the pointer is not guaranteedPeter Valchev
to be NULL in such case; ok millert
2003-04-03strcpy -> strlcpyHans Insulander
strcat -> strlcat ok millert@
2003-01-15typos; jmc@prioris.mini.pw.edu.plTheo de Raadt
2002-12-07Treat EPIPE writing to the terminal the same as SIGQUIT from the user.Todd C. Miller
Closes PR 3016.
2002-06-12a real pid_t cleanup.Mike Pechkin
espie@ ok for make/, deraadt@ one extra eye, millert@ ok
2002-05-11Add missing libraries to bsd.prog.mk (mostly kerberosV)Marc Espie
Use them in DPADD throughout the tree. Fix a few mispells (LIBMATH -> LIBM...) Wipe obsolete lib (LIBRESOLV) Sort added missing libraries, move obsolete stuff apart. Synch documentation in bsd.README ok deraadt@
2002-05-06Kill/adjust r(login|exec)d? references now that those are no longer inTodd C. Miller
the tree.
2002-03-25Todd Miller pointed this out to me:Hans Insulander
You really want to use 'volatile sig_atomic_t' not just sig_atomic_t for flags set in signal handlers. Without the volatile gcc may stick the value in a register but update the on-stack copy in the signal handler.
2002-03-22Telnet encryption warning messages, taken from kth-krb4-1.1.1.Hans Insulander
(krb4-1.1.1 will be imported after release) Noone bothered to look at this, but I've used this for a couple of weeks, and i really want this to go in before release.
2002-03-05and a -ldesTheo de Raadt
2002-02-17telnet used a P macro instead of __P -- g/c that too.Todd C. Miller
2002-02-16Part one of userland __P removal. Done with a simple regexp with some minor ↵Todd C. Miller
hand editing to make comments line up correctly. Another pass is forthcoming that handles the cases that could not be done automatically.
2002-02-10spellingTheo de Raadt
2002-02-01strlcpyJun-ichiro itojun Hagino
2001-11-19kill more registersMike Pechkin
millert@ ok
2001-11-03Telnet client shouldn't say it does Kerberos unless there actually existsHans Insulander
a krb4 or krb5 ticket file. ok art@
2001-09-10link k5 before k4 (new binutils is more picky than old ld)Jason Wright
2001-09-04Replace the deprecated BSD sigsetmask/sigblock/sigpause functions with their ↵Todd C. Miller
POSIX counterparts.
2001-09-03repair a bug in 1.23, where "telnetport" was incorrectly set.Jun-ichiro itojun Hagino
From: Pekka Savola <pekkas@netcore.fi>