mirror of
https://github.com/sheumann/telnetd.git
synced 2024-11-23 07:31:32 +00:00
Catch up with "base" telnet.
s/FALL THROUGH/FALLTHROUGH/ for lint(1). s/Usage/usage/ for consistency. git-svn-id: http://svn0.us-east.freebsd.org/base/head/contrib/telnet@103955 ccf9f872-aa2e-dd11-9fc8-001c23d0bc1f
This commit is contained in:
parent
b4c79417a1
commit
112a50cd56
@ -453,7 +453,7 @@ send_tncmd(void (*func)(int, int), const char *cmd, char *name)
|
|||||||
if (isprefix(name, "help") || isprefix(name, "?")) {
|
if (isprefix(name, "help") || isprefix(name, "?")) {
|
||||||
int col, len;
|
int col, len;
|
||||||
|
|
||||||
printf("Usage: send %s <value|option>\n", cmd);
|
printf("usage: send %s <value|option>\n", cmd);
|
||||||
printf("\"value\" must be from 0 to 255\n");
|
printf("\"value\" must be from 0 to 255\n");
|
||||||
printf("Valid options are:\n\t");
|
printf("Valid options are:\n\t");
|
||||||
|
|
||||||
|
@ -61,10 +61,6 @@ static const char sccsid[] = "@(#)main.c 8.3 (Berkeley) 5/30/95";
|
|||||||
#define OPTS_FORWARD_CREDS 0x00000002
|
#define OPTS_FORWARD_CREDS 0x00000002
|
||||||
#define OPTS_FORWARDABLE_CREDS 0x00000001
|
#define OPTS_FORWARDABLE_CREDS 0x00000001
|
||||||
|
|
||||||
#if 0
|
|
||||||
#define FORWARD
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
|
#if defined(IPSEC) && defined(IPSEC_POLICY_IPSEC)
|
||||||
char *ipsec_policy_in = NULL;
|
char *ipsec_policy_in = NULL;
|
||||||
char *ipsec_policy_out = NULL;
|
char *ipsec_policy_out = NULL;
|
||||||
@ -90,7 +86,7 @@ tninit(void)
|
|||||||
static void
|
static void
|
||||||
usage(void)
|
usage(void)
|
||||||
{
|
{
|
||||||
fprintf(stderr, "Usage: %s %s%s%s%s\n",
|
fprintf(stderr, "usage: %s %s%s%s%s\n",
|
||||||
prompt,
|
prompt,
|
||||||
#ifdef AUTHENTICATION
|
#ifdef AUTHENTICATION
|
||||||
"[-4] [-6] [-8] [-E] [-K] [-L] [-N] [-S tos] [-X atype] [-c] [-d]",
|
"[-4] [-6] [-8] [-E] [-K] [-L] [-N] [-S tos] [-X atype] [-c] [-d]",
|
||||||
|
@ -286,7 +286,7 @@ willoption(int option)
|
|||||||
case TELOPT_BINARY:
|
case TELOPT_BINARY:
|
||||||
case TELOPT_SGA:
|
case TELOPT_SGA:
|
||||||
settimer(modenegotiated);
|
settimer(modenegotiated);
|
||||||
/* FALL THROUGH */
|
/* FALLTHROUGH */
|
||||||
case TELOPT_STATUS:
|
case TELOPT_STATUS:
|
||||||
#ifdef AUTHENTICATION
|
#ifdef AUTHENTICATION
|
||||||
case TELOPT_AUTHENTICATION:
|
case TELOPT_AUTHENTICATION:
|
||||||
@ -346,7 +346,7 @@ wontoption(int option)
|
|||||||
case TELOPT_SGA:
|
case TELOPT_SGA:
|
||||||
if (!kludgelinemode)
|
if (!kludgelinemode)
|
||||||
break;
|
break;
|
||||||
/* FALL THROUGH */
|
/* FALLTHROUGH */
|
||||||
#endif
|
#endif
|
||||||
case TELOPT_ECHO:
|
case TELOPT_ECHO:
|
||||||
settimer(modenegotiated);
|
settimer(modenegotiated);
|
||||||
@ -1418,7 +1418,7 @@ env_opt(unsigned char *buf, int len)
|
|||||||
old_env_var = OLD_ENV_VAR;
|
old_env_var = OLD_ENV_VAR;
|
||||||
old_env_value = OLD_ENV_VALUE;
|
old_env_value = OLD_ENV_VALUE;
|
||||||
}
|
}
|
||||||
/* FALL THROUGH */
|
/* FALLTHROUGH */
|
||||||
# endif
|
# endif
|
||||||
case OLD_ENV_VALUE:
|
case OLD_ENV_VALUE:
|
||||||
/*
|
/*
|
||||||
@ -1426,7 +1426,7 @@ env_opt(unsigned char *buf, int len)
|
|||||||
* still recognize it, just in case it is an
|
* still recognize it, just in case it is an
|
||||||
* old server that has VAR & VALUE mixed up...
|
* old server that has VAR & VALUE mixed up...
|
||||||
*/
|
*/
|
||||||
/* FALL THROUGH */
|
/* FALLTHROUGH */
|
||||||
#else
|
#else
|
||||||
case NEW_ENV_VAR:
|
case NEW_ENV_VAR:
|
||||||
#endif
|
#endif
|
||||||
@ -1439,7 +1439,7 @@ env_opt(unsigned char *buf, int len)
|
|||||||
break;
|
break;
|
||||||
case ENV_ESC:
|
case ENV_ESC:
|
||||||
i++;
|
i++;
|
||||||
/*FALL THROUGH*/
|
/*FALLTHROUGH*/
|
||||||
default:
|
default:
|
||||||
if (epc)
|
if (epc)
|
||||||
*epc++ = buf[i];
|
*epc++ = buf[i];
|
||||||
@ -1648,7 +1648,7 @@ telrcv(void)
|
|||||||
TTYADD(c);
|
TTYADD(c);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
/* Else, fall through */
|
/* FALLTHROUGH */
|
||||||
|
|
||||||
case TS_DATA:
|
case TS_DATA:
|
||||||
if (c == IAC) {
|
if (c == IAC) {
|
||||||
|
Loading…
Reference in New Issue
Block a user