1 /* Copyright (c) 2008, 2009
2 * Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
3 * Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
4 * Micah Cowan (micah@cowan.name)
5 * Sadrul Habib Chowdhury (sadrul@users.sourceforge.net)
6 * Copyright (c) 1993-2002, 2003, 2005, 2006, 2007
7 * Juergen Weigert (jnweiger@immd4.informatik.uni-erlangen.de)
8 * Michael Schroeder (mlschroe@immd4.informatik.uni-erlangen.de)
9 * Copyright (c) 1987 Oliver Laumann
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 3, or (at your option)
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program (see the file COPYING); if not, see
23 * http://www.gnu.org/licenses/, or contact Free Software Foundation, Inc.,
24 * 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA
26 ****************************************************************
55 # define STATIC /* a function that the debugger should see */
57 # define STATIC static
61 # define DEBUGDIR "/tmp/debug"
62 # define debugf(a) do {if(dfp){fprintf a;fflush(dfp);}} while (0)
63 # define debug(x) debugf((dfp,x))
64 # define debug1(x,a) debugf((dfp,x,a))
65 # define debug2(x,a,b) debugf((dfp,x,a,b))
66 # define debug3(x,a,b,c) debugf((dfp,x,a,b,c))
69 # define debugf(a) do {} while (0)
70 # define debug(x) debugf(x)
71 # define debug1(x,a) debugf(x)
72 # define debug2(x,a,b) debugf(x)
73 # define debug3(x,a,b,c) debugf(x)
81 # if defined(__STDC__)
82 # define ASSERT(lousy_cpp) do {if (!(lousy_cpp)) {if (!dfp) opendebug(0, 1);debug2("ASSERT("#lousy_cpp") failed file %s line %d\n", __FILE__, __LINE__);abort();}} while (0)
84 # define ASSERT(lousy_cpp) do {if (!(lousy_cpp)) {if (!dfp) opendebug(0, 1);debug2("ASSERT(lousy_cpp) failed file %s line %d\n", __FILE__, __LINE__);abort();}} while (0)
87 # define ASSERT(lousy_cpp) do {} while (0)
90 /* here comes my own Free: jw. */
91 #define Free(a) {if ((a) == 0) abort(); else free((void *)(a)); (a)=0;}
93 #define Ctrl(c) ((c)&037)
99 #define SILENCEWAIT 30
102 * if a nasty user really wants to try a history of 3000 lines on all 10
103 * windows, he will allocate 8 MegaBytes of memory, which is quite enough.
105 #define MAXHISTHEIGHT 3000
106 #define DEFAULTHISTHEIGHT 100
107 #if defined(NAME_MAX) && NAME_MAX < 16
108 # define DEFAULT_BUFFERFILE "/tmp/screen-xchg"
110 # define DEFAULT_BUFFERFILE "/tmp/screen-exchange"
114 #if defined(hpux) && !(defined(VSUSP) && defined(VDSUSP) && defined(VWERASE) && defined(VLNEXT))
115 # define HPUX_LTCHARS_HACK
122 # ifdef HPUX_LTCHARS_HACK
123 struct ltchars m_ltchars
;
124 # endif /* HPUX_LTCHARS_HACK */
134 struct sgttyb m_ttyb
;
135 struct tchars m_tchars
;
136 struct ltchars m_ltchars
;
141 #if defined(KANJI) && defined(TIOCKSET)
142 struct jtchars m_jtchars
;
148 /* #include "logfile.h" */ /* (requires stat.h) struct logfile */
154 * Parameters for the Detach() routine
160 #define D_REMOTE_POWER 4
165 * Here are the messages the attacher sends to the backend
172 #define MSG_POW_DETACH 5
175 #define MSG_COMMAND 8
178 * versions of struct msg:
179 * 0: screen version 3.6.6 (version count introduced)
180 * 1: screen version 4.1.0
182 #define MSG_VERSION 1
183 #define MSG_REVISION (('m'<<24) | ('s'<<16) | ('g'<<8) | MSG_VERSION)
186 int protocol_revision
; /* reduce harm done by incompatible messages */
188 char m_tty
[MAXPATHLEN
]; /* ttyname */
196 int hheight
; /* size of scrollback buffer */
198 char line
[MAXPATHLEN
];
199 char dir
[MAXPATHLEN
];
200 char screenterm
[20]; /* is screen really "screen" ? */
205 char auser
[20 + 1]; /* username */
206 int apid
; /* pid of frontend */
207 int adaptflag
; /* adapt window size? */
208 int lines
, columns
; /* display size */
210 int esc
; /* his new escape character unless -1 */
211 int meta_esc
; /* his new meta esc character unless -1 */
212 char envterm
[20 + 1]; /* terminal type */
213 int encoding
; /* encoding of display */
214 int detachfirst
; /* whether to detach remote sessions first */
219 char duser
[20 + 1]; /* username */
220 int dpid
; /* pid of frontend */
225 char auser
[20 + 1]; /* username */
227 char cmd
[MAXPATHLEN
]; /* command */
228 int apid
; /* pid of frontend */
232 char message
[MAXPATHLEN
* 2];
237 * And the signals the attacher receives from the backend
239 #define SIG_BYE SIGHUP
240 #define SIG_POWER_BYE SIGUSR1
241 #define SIG_LOCK SIGUSR2
242 #define SIG_STOP SIGTSTP
244 #define SIG_NODEBUG SIGIO /* triggerd by command 'debug off' */
248 #define BELL (Ctrl('g'))
249 #define VBELLWAIT 1 /* No. of seconds a vbell will be displayed */
251 #define BELL_ON 0 /* No bell has occurred in the window */
252 #define BELL_FOUND 1 /* A bell has occurred, but user not yet notified */
253 #define BELL_DONE 2 /* A bell has occured, user has been notified */
255 #define BELL_VISUAL 3 /* A bell has occured in fore win, notify him visually */
257 #define MON_OFF 0 /* Monitoring is off in the window */
258 #define MON_ON 1 /* No activity has occurred in the window */
259 #define MON_FOUND 2 /* Activity has occured, but user not yet notified */
260 #define MON_DONE 3 /* Activity has occured, user has been notified */
262 #define DUMP_TERMCAP 0 /* WriteFile() options */
263 #define DUMP_HARDCOPY 1
264 #define DUMP_EXCHANGE 2
265 #define DUMP_SCROLLBACK 3
267 #define SILENCE_OFF 0
270 extern char strnomem
[];
273 * line modes used by Input()
290 #define MAX_PLOP_DEFS 256
294 int idx
; /* the index in the bsd-is padding lookup table */
295 int bps
; /* bits per seconds */
296 int sym
; /* symbol defined in ttydev.h */
304 #define WLIST_NESTED 2