Deleted Added
full compact
ext.h (80224) ext.h (81965)
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)ext.h 8.2 (Berkeley) 12/15/93
1/*
2 * Copyright (c) 1989, 1993
3 * The Regents of the University of California. All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 17 unchanged lines hidden (view full) ---

26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * @(#)ext.h 8.2 (Berkeley) 12/15/93
34 * $FreeBSD: head/contrib/telnet/telnetd/ext.h 80224 2001-07-23 21:52:26Z kris $
34 * $FreeBSD: head/contrib/telnet/telnetd/ext.h 81965 2001-08-20 12:28:40Z markm $
35 */
36
37/*
38 * Telnet server variable declarations
39 */
40extern char options[256];
41extern char do_dont_resp[256];
42extern char will_wont_resp[256];

--- 37 unchanged lines hidden (view full) ---

80extern int pcc, ncc;
81
82#if defined(CRAY2) && defined(UNICOS5)
83extern int unpcc; /* characters left unprocessed by CRAY-2 terminal routine */
84extern char *unptyip; /* pointer to remaining characters in buffer */
85#endif
86
87extern int pty, net;
35 */
36
37/*
38 * Telnet server variable declarations
39 */
40extern char options[256];
41extern char do_dont_resp[256];
42extern char will_wont_resp[256];

--- 37 unchanged lines hidden (view full) ---

80extern int pcc, ncc;
81
82#if defined(CRAY2) && defined(UNICOS5)
83extern int unpcc; /* characters left unprocessed by CRAY-2 terminal routine */
84extern char *unptyip; /* pointer to remaining characters in buffer */
85#endif
86
87extern int pty, net;
88extern char *line;
88extern char line[16];
89extern int SYNCHing; /* we are in TELNET SYNCH mode */
90
91#ifndef P
92# ifdef __STDC__
93# define P(x) x
94# else
95# define P(x) ()
96# endif

--- 149 unchanged lines hidden ---
89extern int SYNCHing; /* we are in TELNET SYNCH mode */
90
91#ifndef P
92# ifdef __STDC__
93# define P(x) x
94# else
95# define P(x) ()
96# endif

--- 149 unchanged lines hidden ---