2008-12-05 21:04:06 +01:00
|
|
|
/* $Id: tmux.h,v 1.200 2008-12-05 20:04:06 nicm Exp $ */
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
|
|
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
|
|
|
|
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
2007-09-20 11:43:33 +02:00
|
|
|
#ifndef TMUX_H
|
|
|
|
#define TMUX_H
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
#define PROTOCOL_VERSION -3
|
2008-07-01 21:47:02 +02:00
|
|
|
|
2007-10-26 14:29:07 +02:00
|
|
|
/* Shut up gcc warnings about empty if bodies. */
|
|
|
|
#define RB_AUGMENT(x) do {} while (0)
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
#include <sys/param.h>
|
2008-08-28 19:45:30 +02:00
|
|
|
#include <sys/time.h>
|
2007-10-31 15:26:26 +01:00
|
|
|
|
|
|
|
#ifndef NO_QUEUE_H
|
2007-07-09 21:04:12 +02:00
|
|
|
#include <sys/queue.h>
|
2007-10-31 15:26:26 +01:00
|
|
|
#else
|
|
|
|
#include "compat/queue.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef NO_TREE_H
|
|
|
|
#include <sys/tree.h>
|
|
|
|
#else
|
|
|
|
#include "compat/tree.h"
|
|
|
|
#endif
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2008-08-28 19:45:30 +02:00
|
|
|
#ifndef BROKEN_POLL
|
|
|
|
#include <poll.h>
|
|
|
|
#else
|
|
|
|
#undef HAVE_POLL
|
|
|
|
#include "compat/bsd-poll.h"
|
|
|
|
#endif
|
|
|
|
|
2008-06-18 22:58:03 +02:00
|
|
|
#include <ncurses.h>
|
2008-05-31 20:04:57 +02:00
|
|
|
#include <limits.h>
|
2007-10-31 15:26:26 +01:00
|
|
|
#include <signal.h>
|
2007-07-09 21:04:12 +02:00
|
|
|
#include <stdarg.h>
|
2007-10-31 15:26:26 +01:00
|
|
|
#include <stdint.h>
|
2008-06-18 22:11:25 +02:00
|
|
|
#include <stdio.h>
|
2007-11-27 20:23:34 +01:00
|
|
|
#include <term.h>
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
#include "array.h"
|
|
|
|
|
2008-06-18 22:11:25 +02:00
|
|
|
extern const char *__progname;
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2008-09-26 01:28:15 +02:00
|
|
|
#ifndef GETOPT_PREFIX
|
|
|
|
#define GETOPT_PREFIX ""
|
|
|
|
#endif
|
|
|
|
|
2007-10-31 15:26:26 +01:00
|
|
|
#ifndef INFTIM
|
|
|
|
#define INFTIM -1
|
|
|
|
#endif
|
|
|
|
|
2008-06-18 22:11:25 +02:00
|
|
|
#ifndef WAIT_ANY
|
|
|
|
#define WAIT_ANY -1
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef SUN_LEN
|
|
|
|
#define SUN_LEN(sun) (sizeof (sun)->sun_path)
|
|
|
|
#endif
|
|
|
|
|
2007-10-19 22:36:08 +02:00
|
|
|
#ifndef __dead
|
|
|
|
#define __dead __attribute__ ((__noreturn__))
|
|
|
|
#endif
|
|
|
|
#ifndef __packed
|
|
|
|
#define __packed __attribute__ ((__packed__))
|
|
|
|
#endif
|
|
|
|
|
2008-08-28 19:45:30 +02:00
|
|
|
#ifndef timercmp
|
|
|
|
#define timercmp(tvp, uvp, cmp) \
|
|
|
|
(((tvp)->tv_sec == (uvp)->tv_sec) ? \
|
|
|
|
((tvp)->tv_usec cmp (uvp)->tv_usec) : \
|
|
|
|
((tvp)->tv_sec cmp (uvp)->tv_sec))
|
2008-06-06 19:20:30 +02:00
|
|
|
#endif
|
|
|
|
|
2008-08-28 19:45:30 +02:00
|
|
|
#ifndef timeradd
|
|
|
|
#define timeradd(tvp, uvp, vvp) \
|
2008-06-23 00:20:07 +02:00
|
|
|
do { \
|
2008-08-28 19:45:30 +02:00
|
|
|
(vvp)->tv_sec = (tvp)->tv_sec + (uvp)->tv_sec; \
|
|
|
|
(vvp)->tv_usec = (tvp)->tv_usec + (uvp)->tv_usec; \
|
|
|
|
if ((vvp)->tv_usec >= 1000000) { \
|
|
|
|
(vvp)->tv_sec++; \
|
|
|
|
(vvp)->tv_usec -= 1000000; \
|
2008-06-23 00:20:07 +02:00
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
2007-10-23 12:21:59 +02:00
|
|
|
#ifndef TTY_NAME_MAX
|
|
|
|
#define TTY_NAME_MAX 32
|
|
|
|
#endif
|
|
|
|
|
2008-06-18 21:34:50 +02:00
|
|
|
#ifdef NO_PATHS_H
|
|
|
|
#define _PATH_BSHELL "/bin/sh"
|
|
|
|
#define _PATH_TMP "/tmp/"
|
2008-06-18 22:11:25 +02:00
|
|
|
#define _PATH_DEVNULL "/dev/null"
|
2008-06-18 21:34:50 +02:00
|
|
|
#endif
|
|
|
|
|
2008-06-02 20:08:17 +02:00
|
|
|
/* Default configuration file. */
|
|
|
|
#define DEFAULT_CFG ".tmux.conf"
|
|
|
|
|
2007-07-26 01:13:18 +02:00
|
|
|
/* Fatal errors. */
|
|
|
|
#define fatal(msg) log_fatal("%s: %s", __func__, msg);
|
2007-08-27 13:05:21 +02:00
|
|
|
#define fatalx(msg) log_fatalx("%s: %s", __func__, msg);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/* Definition to shut gcc up about unused arguments. */
|
|
|
|
#define unused __attribute__ ((unused))
|
|
|
|
|
|
|
|
/* Attribute to make gcc check printf-like arguments. */
|
|
|
|
#define printflike1 __attribute__ ((format (printf, 1, 2)))
|
|
|
|
#define printflike2 __attribute__ ((format (printf, 2, 3)))
|
|
|
|
#define printflike3 __attribute__ ((format (printf, 3, 4)))
|
|
|
|
#define printflike4 __attribute__ ((format (printf, 4, 5)))
|
|
|
|
|
|
|
|
/* Buffer macros. */
|
|
|
|
#define BUFFER_USED(b) ((b)->size)
|
|
|
|
#define BUFFER_FREE(b) ((b)->space - (b)->off - (b)->size)
|
|
|
|
#define BUFFER_IN(b) ((b)->base + (b)->off + (b)->size)
|
|
|
|
#define BUFFER_OUT(b) ((b)->base + (b)->off)
|
|
|
|
|
|
|
|
/* Buffer structure. */
|
|
|
|
struct buffer {
|
|
|
|
u_char *base; /* buffer start */
|
|
|
|
size_t space; /* total size of buffer */
|
|
|
|
|
|
|
|
size_t size; /* size of data in buffer */
|
|
|
|
size_t off; /* offset of data in buffer */
|
|
|
|
};
|
|
|
|
|
2008-06-04 18:46:23 +02:00
|
|
|
/* Bell option values. */
|
|
|
|
#define BELL_NONE 0
|
|
|
|
#define BELL_ANY 1
|
|
|
|
#define BELL_CURRENT 2
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* Key codes. ncurses defines KEY_*. Grrr. */
|
2008-06-25 09:30:08 +02:00
|
|
|
#define KEYC_NONE 0x0ffff
|
|
|
|
#define KEYC_OFFSET 0x10000
|
|
|
|
#define KEYC_ESCAPE 0x20000
|
|
|
|
|
|
|
|
#define KEYC_ADDESCAPE(k) ((k) | KEYC_ESCAPE)
|
|
|
|
#define KEYC_REMOVEESCAPE(k) ((k) & ~KEYC_ESCAPE)
|
|
|
|
#define KEYC_ISESCAPE(k) ((k) != KEYC_NONE && ((k) & KEYC_ESCAPE))
|
|
|
|
|
2008-07-24 01:44:50 +02:00
|
|
|
/* #define KEYC_A1 (KEYC_OFFSET + 0x1) */
|
|
|
|
/* #define KEYC_A3 (KEYC_OFFSET + 0x2) */
|
|
|
|
/* #define KEYC_B2 (KEYC_OFFSET + 0x3) */
|
2008-06-25 09:30:08 +02:00
|
|
|
/* #define KEYC_BACKSPACE (KEYC_OFFSET + 0x4) */
|
|
|
|
#define KEYC_BEG (KEYC_OFFSET + 0x5)
|
|
|
|
#define KEYC_BTAB (KEYC_OFFSET + 0x6)
|
2008-07-24 01:44:50 +02:00
|
|
|
/* #define KEYC_C1 (KEYC_OFFSET + 0x7) */
|
|
|
|
/* #define KEYC_C3 (KEYC_OFFSET + 0x8) */
|
2008-06-25 09:30:08 +02:00
|
|
|
#define KEYC_CANCEL (KEYC_OFFSET + 0x9)
|
|
|
|
#define KEYC_CATAB (KEYC_OFFSET + 0xa)
|
|
|
|
#define KEYC_CLEAR (KEYC_OFFSET + 0xb)
|
|
|
|
#define KEYC_CLOSE (KEYC_OFFSET + 0xc)
|
|
|
|
#define KEYC_COMMAND (KEYC_OFFSET + 0xd)
|
|
|
|
#define KEYC_COPY (KEYC_OFFSET + 0xe)
|
|
|
|
#define KEYC_CREATE (KEYC_OFFSET + 0xf)
|
|
|
|
#define KEYC_CTAB (KEYC_OFFSET + 0x10)
|
|
|
|
#define KEYC_DC (KEYC_OFFSET + 0x11)
|
|
|
|
#define KEYC_DL (KEYC_OFFSET + 0x12)
|
|
|
|
#define KEYC_DOWN (KEYC_OFFSET + 0x13)
|
|
|
|
#define KEYC_EIC (KEYC_OFFSET + 0x14)
|
|
|
|
#define KEYC_END (KEYC_OFFSET + 0x15)
|
2008-07-24 01:44:50 +02:00
|
|
|
/* #define KEYC_ENTER (KEYC_OFFSET + 0x16) */
|
2008-06-25 09:30:08 +02:00
|
|
|
#define KEYC_EOL (KEYC_OFFSET + 0x17)
|
|
|
|
#define KEYC_EOS (KEYC_OFFSET + 0x18)
|
|
|
|
#define KEYC_EXIT (KEYC_OFFSET + 0x19)
|
|
|
|
#define KEYC_F0 (KEYC_OFFSET + 0x1a)
|
|
|
|
#define KEYC_F1 (KEYC_OFFSET + 0x1b)
|
|
|
|
#define KEYC_F10 (KEYC_OFFSET + 0x1c)
|
|
|
|
#define KEYC_F11 (KEYC_OFFSET + 0x1d)
|
|
|
|
#define KEYC_F12 (KEYC_OFFSET + 0x1e)
|
|
|
|
#define KEYC_F13 (KEYC_OFFSET + 0x1f)
|
|
|
|
#define KEYC_F14 (KEYC_OFFSET + 0x20)
|
|
|
|
#define KEYC_F15 (KEYC_OFFSET + 0x21)
|
|
|
|
#define KEYC_F16 (KEYC_OFFSET + 0x22)
|
|
|
|
#define KEYC_F17 (KEYC_OFFSET + 0x23)
|
|
|
|
#define KEYC_F18 (KEYC_OFFSET + 0x24)
|
|
|
|
#define KEYC_F19 (KEYC_OFFSET + 0x25)
|
|
|
|
#define KEYC_F2 (KEYC_OFFSET + 0x26)
|
|
|
|
#define KEYC_F20 (KEYC_OFFSET + 0x27)
|
|
|
|
#define KEYC_F21 (KEYC_OFFSET + 0x28)
|
|
|
|
#define KEYC_F22 (KEYC_OFFSET + 0x29)
|
|
|
|
#define KEYC_F23 (KEYC_OFFSET + 0x2a)
|
|
|
|
#define KEYC_F24 (KEYC_OFFSET + 0x2b)
|
|
|
|
#define KEYC_F25 (KEYC_OFFSET + 0x2c)
|
|
|
|
#define KEYC_F26 (KEYC_OFFSET + 0x2d)
|
|
|
|
#define KEYC_F27 (KEYC_OFFSET + 0x2e)
|
|
|
|
#define KEYC_F28 (KEYC_OFFSET + 0x2f)
|
|
|
|
#define KEYC_F29 (KEYC_OFFSET + 0x30)
|
|
|
|
#define KEYC_F3 (KEYC_OFFSET + 0x31)
|
|
|
|
#define KEYC_F30 (KEYC_OFFSET + 0x32)
|
|
|
|
#define KEYC_F31 (KEYC_OFFSET + 0x33)
|
|
|
|
#define KEYC_F32 (KEYC_OFFSET + 0x34)
|
|
|
|
#define KEYC_F33 (KEYC_OFFSET + 0x35)
|
|
|
|
#define KEYC_F34 (KEYC_OFFSET + 0x36)
|
|
|
|
#define KEYC_F35 (KEYC_OFFSET + 0x37)
|
|
|
|
#define KEYC_F36 (KEYC_OFFSET + 0x38)
|
|
|
|
#define KEYC_F37 (KEYC_OFFSET + 0x39)
|
|
|
|
#define KEYC_F38 (KEYC_OFFSET + 0x3a)
|
|
|
|
#define KEYC_F39 (KEYC_OFFSET + 0x3b)
|
|
|
|
#define KEYC_F4 (KEYC_OFFSET + 0x3c)
|
|
|
|
#define KEYC_F40 (KEYC_OFFSET + 0x3d)
|
|
|
|
#define KEYC_F41 (KEYC_OFFSET + 0x3e)
|
|
|
|
#define KEYC_F42 (KEYC_OFFSET + 0x3f)
|
|
|
|
#define KEYC_F43 (KEYC_OFFSET + 0x40)
|
|
|
|
#define KEYC_F44 (KEYC_OFFSET + 0x41)
|
|
|
|
#define KEYC_F45 (KEYC_OFFSET + 0x42)
|
|
|
|
#define KEYC_F46 (KEYC_OFFSET + 0x43)
|
|
|
|
#define KEYC_F47 (KEYC_OFFSET + 0x44)
|
|
|
|
#define KEYC_F48 (KEYC_OFFSET + 0x45)
|
|
|
|
#define KEYC_F49 (KEYC_OFFSET + 0x46)
|
|
|
|
#define KEYC_F5 (KEYC_OFFSET + 0x47)
|
|
|
|
#define KEYC_F50 (KEYC_OFFSET + 0x48)
|
|
|
|
#define KEYC_F51 (KEYC_OFFSET + 0x49)
|
|
|
|
#define KEYC_F52 (KEYC_OFFSET + 0x4a)
|
|
|
|
#define KEYC_F53 (KEYC_OFFSET + 0x4b)
|
|
|
|
#define KEYC_F54 (KEYC_OFFSET + 0x4c)
|
|
|
|
#define KEYC_F55 (KEYC_OFFSET + 0x4d)
|
|
|
|
#define KEYC_F56 (KEYC_OFFSET + 0x4e)
|
|
|
|
#define KEYC_F57 (KEYC_OFFSET + 0x4f)
|
|
|
|
#define KEYC_F58 (KEYC_OFFSET + 0x50)
|
|
|
|
#define KEYC_F59 (KEYC_OFFSET + 0x51)
|
|
|
|
#define KEYC_F6 (KEYC_OFFSET + 0x52)
|
|
|
|
#define KEYC_F60 (KEYC_OFFSET + 0x53)
|
|
|
|
#define KEYC_F61 (KEYC_OFFSET + 0x54)
|
|
|
|
#define KEYC_F62 (KEYC_OFFSET + 0x55)
|
|
|
|
#define KEYC_F63 (KEYC_OFFSET + 0x56)
|
|
|
|
#define KEYC_F7 (KEYC_OFFSET + 0x57)
|
|
|
|
#define KEYC_F8 (KEYC_OFFSET + 0x58)
|
|
|
|
#define KEYC_F9 (KEYC_OFFSET + 0x59)
|
|
|
|
#define KEYC_FIND (KEYC_OFFSET + 0x5a)
|
|
|
|
#define KEYC_HELP (KEYC_OFFSET + 0x5b)
|
|
|
|
#define KEYC_HOME (KEYC_OFFSET + 0x5c)
|
|
|
|
#define KEYC_IC (KEYC_OFFSET + 0x5d)
|
|
|
|
#define KEYC_IL (KEYC_OFFSET + 0x5e)
|
|
|
|
#define KEYC_LEFT (KEYC_OFFSET + 0x5f)
|
|
|
|
#define KEYC_LL (KEYC_OFFSET + 0x60)
|
|
|
|
#define KEYC_MARK (KEYC_OFFSET + 0x61)
|
|
|
|
#define KEYC_MESSAGE (KEYC_OFFSET + 0x62)
|
|
|
|
#define KEYC_MOVE (KEYC_OFFSET + 0x63)
|
|
|
|
#define KEYC_NEXT (KEYC_OFFSET + 0x64)
|
|
|
|
#define KEYC_NPAGE (KEYC_OFFSET + 0x65)
|
|
|
|
#define KEYC_OPEN (KEYC_OFFSET + 0x66)
|
|
|
|
#define KEYC_OPTIONS (KEYC_OFFSET + 0x67)
|
|
|
|
#define KEYC_PPAGE (KEYC_OFFSET + 0x68)
|
|
|
|
#define KEYC_PREVIOUS (KEYC_OFFSET + 0x69)
|
|
|
|
#define KEYC_PRINT (KEYC_OFFSET + 0x6a)
|
|
|
|
#define KEYC_REDO (KEYC_OFFSET + 0x6b)
|
|
|
|
#define KEYC_REFERENCE (KEYC_OFFSET + 0x6c)
|
|
|
|
#define KEYC_REFRESH (KEYC_OFFSET + 0x6d)
|
|
|
|
#define KEYC_REPLACE (KEYC_OFFSET + 0x6e)
|
|
|
|
#define KEYC_RESTART (KEYC_OFFSET + 0x6f)
|
|
|
|
#define KEYC_RESUME (KEYC_OFFSET + 0x70)
|
|
|
|
#define KEYC_RIGHT (KEYC_OFFSET + 0x71)
|
|
|
|
#define KEYC_SAVE (KEYC_OFFSET + 0x72)
|
|
|
|
#define KEYC_SBEG (KEYC_OFFSET + 0x73)
|
|
|
|
#define KEYC_SCANCEL (KEYC_OFFSET + 0x74)
|
|
|
|
#define KEYC_SCOMMAND (KEYC_OFFSET + 0x75)
|
|
|
|
#define KEYC_SCOPY (KEYC_OFFSET + 0x76)
|
|
|
|
#define KEYC_SCREATE (KEYC_OFFSET + 0x77)
|
|
|
|
#define KEYC_SDC (KEYC_OFFSET + 0x78)
|
|
|
|
#define KEYC_SDL (KEYC_OFFSET + 0x79)
|
|
|
|
#define KEYC_SELECT (KEYC_OFFSET + 0x7a)
|
|
|
|
#define KEYC_SEND (KEYC_OFFSET + 0x7b)
|
|
|
|
#define KEYC_SEOL (KEYC_OFFSET + 0x7c)
|
|
|
|
#define KEYC_SEXIT (KEYC_OFFSET + 0x7d)
|
|
|
|
#define KEYC_SF (KEYC_OFFSET + 0x7e)
|
|
|
|
#define KEYC_SFIND (KEYC_OFFSET + 0x7f)
|
|
|
|
#define KEYC_SHELP (KEYC_OFFSET + 0x80)
|
|
|
|
#define KEYC_SHOME (KEYC_OFFSET + 0x81)
|
|
|
|
#define KEYC_SIC (KEYC_OFFSET + 0x82)
|
|
|
|
#define KEYC_SLEFT (KEYC_OFFSET + 0x83)
|
|
|
|
#define KEYC_SMESSAGE (KEYC_OFFSET + 0x84)
|
|
|
|
#define KEYC_SMOVE (KEYC_OFFSET + 0x85)
|
|
|
|
#define KEYC_SNEXT (KEYC_OFFSET + 0x86)
|
|
|
|
#define KEYC_SOPTIONS (KEYC_OFFSET + 0x87)
|
|
|
|
#define KEYC_SPREVIOUS (KEYC_OFFSET + 0x88)
|
|
|
|
#define KEYC_SPRINT (KEYC_OFFSET + 0x89)
|
|
|
|
#define KEYC_SR (KEYC_OFFSET + 0x8a)
|
|
|
|
#define KEYC_SREDO (KEYC_OFFSET + 0x8b)
|
|
|
|
#define KEYC_SREPLACE (KEYC_OFFSET + 0x8c)
|
|
|
|
#define KEYC_SRIGHT (KEYC_OFFSET + 0x8d)
|
|
|
|
#define KEYC_SRSUME (KEYC_OFFSET + 0x8e)
|
|
|
|
#define KEYC_SSAVE (KEYC_OFFSET + 0x8f)
|
|
|
|
#define KEYC_SSUSPEND (KEYC_OFFSET + 0x90)
|
|
|
|
#define KEYC_STAB (KEYC_OFFSET + 0x91)
|
|
|
|
#define KEYC_SUNDO (KEYC_OFFSET + 0x92)
|
|
|
|
#define KEYC_SUSPEND (KEYC_OFFSET + 0x93)
|
|
|
|
#define KEYC_UNDO (KEYC_OFFSET + 0x94)
|
|
|
|
#define KEYC_UP (KEYC_OFFSET + 0x95)
|
|
|
|
#define KEYC_MOUSE (KEYC_OFFSET + 0x96)
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2008-07-24 01:44:50 +02:00
|
|
|
/* Numeric keypad. Numbered from top-left, KPY_X. */
|
|
|
|
#define KEYC_KP0_1 (KEYC_OFFSET + 0x100)
|
|
|
|
#define KEYC_KP0_2 (KEYC_OFFSET + 0x101)
|
|
|
|
#define KEYC_KP0_3 (KEYC_OFFSET + 0x102)
|
|
|
|
#define KEYC_KP1_0 (KEYC_OFFSET + 0x103)
|
|
|
|
#define KEYC_KP1_1 (KEYC_OFFSET + 0x104)
|
|
|
|
#define KEYC_KP1_2 (KEYC_OFFSET + 0x105)
|
|
|
|
#define KEYC_KP1_3 (KEYC_OFFSET + 0x106)
|
|
|
|
#define KEYC_KP2_0 (KEYC_OFFSET + 0x107)
|
|
|
|
#define KEYC_KP2_1 (KEYC_OFFSET + 0x108)
|
|
|
|
#define KEYC_KP2_2 (KEYC_OFFSET + 0x109)
|
|
|
|
#define KEYC_KP3_0 (KEYC_OFFSET + 0x10a)
|
|
|
|
#define KEYC_KP3_1 (KEYC_OFFSET + 0x10b)
|
|
|
|
#define KEYC_KP3_2 (KEYC_OFFSET + 0x10c)
|
|
|
|
#define KEYC_KP3_3 (KEYC_OFFSET + 0x10d)
|
|
|
|
#define KEYC_KP4_0 (KEYC_OFFSET + 0x10e)
|
|
|
|
#define KEYC_KP4_2 (KEYC_OFFSET + 0x10f)
|
|
|
|
|
2007-11-27 20:23:34 +01:00
|
|
|
/* Output codes. */
|
2008-09-25 22:08:57 +02:00
|
|
|
#define TTY_CURSORUP 0
|
|
|
|
#define TTY_CURSORDOWN 1
|
|
|
|
#define TTY_CURSORRIGHT 2
|
|
|
|
#define TTY_CURSORLEFT 3
|
|
|
|
#define TTY_INSERTCHARACTER 4
|
|
|
|
#define TTY_DELETECHARACTER 5
|
|
|
|
#define TTY_INSERTLINE 6
|
|
|
|
#define TTY_DELETELINE 7
|
|
|
|
#define TTY_CLEARLINE 8
|
|
|
|
#define TTY_CLEARENDOFLINE 9
|
|
|
|
#define TTY_CLEARSTARTOFLINE 10
|
|
|
|
#define TTY_CURSORMOVE 11
|
|
|
|
#define TTY_CURSORMODE 12
|
|
|
|
#define TTY_REVERSEINDEX 13
|
|
|
|
#define TTY_SCROLLREGION 14
|
|
|
|
#define TTY_INSERTMODE 15
|
|
|
|
#define TTY_MOUSEMODE 16
|
|
|
|
#define TTY_LINEFEED 17
|
|
|
|
#define TTY_CARRIAGERETURN 18
|
|
|
|
#define TTY_BELL 19
|
|
|
|
#define TTY_KCURSORMODE 20
|
|
|
|
#define TTY_KKEYPADMODE 21
|
|
|
|
#define TTY_CLEARENDOFSCREEN 22
|
|
|
|
#define TTY_CLEARSTARTOFSCREEN 23
|
|
|
|
#define TTY_CLEARSCREEN 24
|
|
|
|
#define TTY_CELL 25
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/* Message codes. */
|
2007-08-27 15:45:26 +02:00
|
|
|
enum hdrtype {
|
2007-10-03 23:31:07 +02:00
|
|
|
MSG_COMMAND,
|
2007-09-26 20:50:49 +02:00
|
|
|
MSG_ERROR,
|
2007-10-03 23:31:07 +02:00
|
|
|
MSG_PRINT,
|
2007-08-27 15:45:26 +02:00
|
|
|
MSG_EXIT,
|
2007-11-27 21:01:30 +01:00
|
|
|
MSG_EXITING,
|
|
|
|
MSG_EXITED,
|
2007-11-27 21:03:08 +01:00
|
|
|
MSG_DETACH,
|
2007-10-03 23:31:07 +02:00
|
|
|
MSG_IDENTIFY,
|
|
|
|
MSG_READY,
|
|
|
|
MSG_RESIZE,
|
2007-08-27 15:45:26 +02:00
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
/* Message header structure. */
|
|
|
|
struct hdr {
|
|
|
|
enum hdrtype type;
|
|
|
|
size_t size;
|
2007-07-09 21:04:12 +02:00
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
struct msg_command_data {
|
2008-07-01 22:35:16 +02:00
|
|
|
pid_t pid; /* pid from $TMUX or -1 */
|
2007-10-23 12:48:23 +02:00
|
|
|
u_int idx; /* index from $TMUX */
|
|
|
|
|
|
|
|
size_t namelen;
|
2007-07-09 21:04:12 +02:00
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
struct msg_identify_data {
|
2007-10-23 11:36:19 +02:00
|
|
|
char tty[TTY_NAME_MAX];
|
2008-07-01 21:47:02 +02:00
|
|
|
int version;
|
2007-10-23 11:36:19 +02:00
|
|
|
|
2008-09-10 00:16:37 +02:00
|
|
|
#define IDENTIFY_UTF8 0x1
|
2008-09-25 22:08:57 +02:00
|
|
|
#define IDENTIFY_256COLOURS 0x2
|
|
|
|
#define IDENTIFY_HASDEFAULTS 0x4
|
2008-09-10 00:16:37 +02:00
|
|
|
int flags;
|
|
|
|
|
2007-09-27 11:52:03 +02:00
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
2007-11-27 20:23:34 +01:00
|
|
|
|
|
|
|
size_t termlen;
|
2007-07-09 21:04:12 +02:00
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
struct msg_resize_data {
|
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
2007-10-03 13:26:34 +02:00
|
|
|
};
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* Modes. */
|
2008-09-09 00:18:03 +02:00
|
|
|
#define MODE_CURSOR 0x1
|
|
|
|
#define MODE_INSERT 0x2
|
|
|
|
#define MODE_KCURSOR 0x4
|
|
|
|
#define MODE_KKEYPAD 0x8
|
2008-09-25 22:08:57 +02:00
|
|
|
#define MODE_MOUSE 0x10
|
|
|
|
|
|
|
|
/* Grid output. */
|
2008-11-23 20:38:12 +01:00
|
|
|
#ifdef DEBUG
|
2008-09-25 22:08:57 +02:00
|
|
|
#define GRID_DEBUG(gd, fmt, ...) log_debug3("%s: (sx=%u, sy=%u, hsize=%u) " \
|
|
|
|
fmt, __func__, (gd)->sx, (gd)->sy, (gd)->hsize, ## __VA_ARGS__)
|
2008-11-23 20:38:12 +01:00
|
|
|
#else
|
|
|
|
#define GRID_DEBUG(...)
|
|
|
|
#endif
|
2008-09-25 22:08:57 +02:00
|
|
|
|
|
|
|
/* Grid attributes. */
|
|
|
|
#define GRID_ATTR_BRIGHT 0x1
|
|
|
|
#define GRID_ATTR_DIM 0x2
|
|
|
|
#define GRID_ATTR_UNDERSCORE 0x4
|
|
|
|
#define GRID_ATTR_BLINK 0x8
|
|
|
|
#define GRID_ATTR_REVERSE 0x10
|
|
|
|
#define GRID_ATTR_HIDDEN 0x20
|
|
|
|
#define GRID_ATTR_ITALICS 0x40
|
|
|
|
#define GRID_ATTR_CHARSET 0x80 /* alternative character set */
|
|
|
|
|
|
|
|
/* Grid flags. */
|
|
|
|
#define GRID_FLAG_FG256 0x1
|
|
|
|
#define GRID_FLAG_BG256 0x2
|
|
|
|
#define GRID_FLAG_PADDING 0x4
|
|
|
|
|
|
|
|
/* Grid cell. */
|
|
|
|
struct grid_cell {
|
|
|
|
u_short data;
|
|
|
|
u_char attr;
|
|
|
|
u_char flags;
|
|
|
|
u_char fg;
|
|
|
|
u_char bg;
|
|
|
|
} __packed;
|
2008-09-26 08:45:28 +02:00
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
/* Grid data. */
|
|
|
|
struct grid_data {
|
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
2008-09-26 08:45:28 +02:00
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
u_int hsize;
|
|
|
|
u_int hlimit;
|
|
|
|
|
|
|
|
u_int *size;
|
|
|
|
struct grid_cell **data;
|
|
|
|
};
|
2007-12-06 10:46:23 +01:00
|
|
|
|
|
|
|
/* Screen selection. */
|
|
|
|
struct screen_sel {
|
|
|
|
int flag;
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2007-12-06 10:46:23 +01:00
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
|
|
|
|
|
|
|
u_int ex;
|
|
|
|
u_int ey;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Virtual screen. */
|
2007-07-09 21:04:12 +02:00
|
|
|
struct screen {
|
2007-11-30 12:08:35 +01:00
|
|
|
char *title;
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
struct grid_data *grid; /* grid data */
|
2007-10-26 19:15:50 +02:00
|
|
|
|
|
|
|
u_int cx; /* cursor x */
|
|
|
|
u_int cy; /* cursor y */
|
2008-09-10 00:16:37 +02:00
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
u_int rupper; /* scroll region top */
|
|
|
|
u_int rlower; /* scroll region bottom */
|
2007-11-22 20:17:01 +01:00
|
|
|
|
2007-12-06 10:46:23 +01:00
|
|
|
int mode;
|
2007-11-22 20:17:01 +01:00
|
|
|
|
2007-12-06 10:46:23 +01:00
|
|
|
struct screen_sel sel;
|
2007-11-22 20:17:01 +01:00
|
|
|
};
|
|
|
|
|
2007-11-21 19:24:49 +01:00
|
|
|
/* Screen redraw context. */
|
2007-12-06 10:46:23 +01:00
|
|
|
struct screen_redraw_ctx {
|
2007-11-27 20:23:34 +01:00
|
|
|
void *data;
|
|
|
|
void (*write)(void *, int, ...);
|
|
|
|
|
2007-12-06 10:46:23 +01:00
|
|
|
u_int saved_cx;
|
|
|
|
u_int saved_cy;
|
2007-11-21 19:24:49 +01:00
|
|
|
|
2007-12-06 10:46:23 +01:00
|
|
|
struct screen *s;
|
|
|
|
};
|
2007-11-21 19:24:49 +01:00
|
|
|
|
2007-12-06 10:46:23 +01:00
|
|
|
/* Screen write context. */
|
|
|
|
struct screen_write_ctx {
|
|
|
|
void *data;
|
|
|
|
void (*write)(void *, int, ...);
|
2007-11-21 19:24:49 +01:00
|
|
|
|
2007-12-06 10:46:23 +01:00
|
|
|
struct screen *s;
|
2007-11-21 19:24:49 +01:00
|
|
|
};
|
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
/* Screen size. */
|
|
|
|
#define screen_size_x(s) ((s)->grid->sx)
|
|
|
|
#define screen_size_y(s) ((s)->grid->sy)
|
|
|
|
#define screen_hsize(s) ((s)->grid->hsize)
|
|
|
|
#define screen_hlimit(s) ((s)->grid->hlimit)
|
2007-12-06 11:36:01 +01:00
|
|
|
|
2007-09-29 00:47:22 +02:00
|
|
|
/* Input parser sequence argument. */
|
|
|
|
struct input_arg {
|
2007-09-29 16:25:49 +02:00
|
|
|
u_char data[64];
|
|
|
|
size_t used;
|
2007-09-29 00:47:22 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
/* Input parser context. */
|
|
|
|
struct input_ctx {
|
2007-10-24 17:29:29 +02:00
|
|
|
struct window *w;
|
2007-12-06 10:46:23 +01:00
|
|
|
struct screen_write_ctx ctx;
|
2007-10-24 17:29:29 +02:00
|
|
|
|
2007-09-29 00:47:22 +02:00
|
|
|
u_char *buf;
|
|
|
|
size_t len;
|
|
|
|
size_t off;
|
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
struct grid_cell cell; /* current cell data */
|
|
|
|
|
|
|
|
struct grid_cell saved_cell;
|
|
|
|
u_int saved_cx;
|
|
|
|
u_int saved_cy;
|
|
|
|
|
2007-11-30 12:08:35 +01:00
|
|
|
#define MAXSTRINGLEN 1024
|
|
|
|
u_char *string_buf;
|
|
|
|
size_t string_len;
|
|
|
|
int string_type;
|
2008-10-09 23:22:16 +02:00
|
|
|
#define STRING_SYSTEM 0
|
|
|
|
#define STRING_APPLICATION 1
|
|
|
|
#define STRING_NAME 2
|
2007-10-01 19:37:41 +02:00
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
u_char utf8_buf[4];
|
2008-09-10 00:16:37 +02:00
|
|
|
u_int utf8_len;
|
|
|
|
u_int utf8_off;
|
|
|
|
|
2008-11-04 21:41:10 +01:00
|
|
|
u_char intermediate;
|
2007-10-10 21:45:20 +02:00
|
|
|
void *(*state)(u_char, struct input_ctx *);
|
2007-09-29 00:47:22 +02:00
|
|
|
|
|
|
|
u_char private;
|
|
|
|
ARRAY_DECL(, struct input_arg) args;
|
|
|
|
};
|
|
|
|
|
2007-11-21 14:11:41 +01:00
|
|
|
/*
|
|
|
|
* Window mode. Windows can be in several modes and this is used to call the
|
|
|
|
* right function to handle input and output.
|
|
|
|
*/
|
2008-06-20 19:31:48 +02:00
|
|
|
struct client;
|
2007-11-21 14:11:41 +01:00
|
|
|
struct window_mode {
|
2007-12-06 11:04:43 +01:00
|
|
|
struct screen *(*init)(struct window *);
|
2007-12-06 10:46:23 +01:00
|
|
|
void (*free)(struct window *);
|
2007-11-21 14:11:41 +01:00
|
|
|
void (*resize)(struct window *, u_int, u_int);
|
2008-06-20 19:31:48 +02:00
|
|
|
void (*key)(struct window *, struct client *, int);
|
2007-11-21 14:11:41 +01:00
|
|
|
};
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* Window structure. */
|
|
|
|
struct window {
|
2007-10-04 01:32:26 +02:00
|
|
|
char *name;
|
2008-06-29 09:04:31 +02:00
|
|
|
char *cmd;
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
int fd;
|
|
|
|
struct buffer *in;
|
|
|
|
struct buffer *out;
|
|
|
|
|
2007-09-29 00:47:22 +02:00
|
|
|
struct input_ctx ictx;
|
|
|
|
|
2007-09-29 11:15:49 +02:00
|
|
|
int flags;
|
|
|
|
#define WINDOW_BELL 0x1
|
2007-12-06 10:46:23 +01:00
|
|
|
#define WINDOW_HIDDEN 0x2
|
2008-06-04 18:46:23 +02:00
|
|
|
#define WINDOW_ACTIVITY 0x4
|
2008-06-04 19:54:27 +02:00
|
|
|
#define WINDOW_MONITOR 0x8
|
2008-06-06 22:02:27 +02:00
|
|
|
#define WINDOW_AGGRESSIVE 0x10
|
2008-06-29 09:04:31 +02:00
|
|
|
#define WINDOW_ZOMBIFY 0x20
|
2008-11-16 14:28:59 +01:00
|
|
|
#define WINDOW_UTF8 0x40
|
2007-09-29 11:15:49 +02:00
|
|
|
|
2008-06-14 18:47:20 +02:00
|
|
|
u_int limitx;
|
|
|
|
u_int limity;
|
|
|
|
|
2007-12-06 10:46:23 +01:00
|
|
|
struct screen *screen;
|
|
|
|
struct screen base;
|
2007-11-21 15:01:53 +01:00
|
|
|
|
2007-11-21 14:11:41 +01:00
|
|
|
const struct window_mode *mode;
|
2007-11-21 15:01:53 +01:00
|
|
|
void *modedata;
|
2007-10-26 14:29:07 +02:00
|
|
|
|
|
|
|
u_int references;
|
2007-07-09 21:04:12 +02:00
|
|
|
};
|
|
|
|
ARRAY_DECL(windows, struct window *);
|
|
|
|
|
2007-10-26 14:29:07 +02:00
|
|
|
/* Entry on local window list. */
|
|
|
|
struct winlink {
|
|
|
|
int idx;
|
|
|
|
struct window *window;
|
|
|
|
|
|
|
|
RB_ENTRY(winlink) entry;
|
2008-11-16 11:10:26 +01:00
|
|
|
SLIST_ENTRY(winlink) sentry;
|
2007-10-26 14:29:07 +02:00
|
|
|
};
|
|
|
|
RB_HEAD(winlinks, winlink);
|
2008-11-16 11:10:26 +01:00
|
|
|
SLIST_HEAD(winlink_stack, winlink);
|
2007-10-26 14:29:07 +02:00
|
|
|
|
2008-06-03 23:42:37 +02:00
|
|
|
/* Option data structures. */
|
|
|
|
struct options_entry {
|
|
|
|
char *name;
|
|
|
|
|
|
|
|
enum {
|
|
|
|
OPTIONS_STRING,
|
2008-06-15 10:01:54 +02:00
|
|
|
OPTIONS_NUMBER,
|
|
|
|
OPTIONS_KEY,
|
|
|
|
OPTIONS_COLOURS
|
2008-06-03 23:42:37 +02:00
|
|
|
} type;
|
|
|
|
union {
|
|
|
|
char *string;
|
|
|
|
long long number;
|
2008-06-15 10:01:54 +02:00
|
|
|
int key;
|
|
|
|
u_char colours;
|
2008-06-03 23:42:37 +02:00
|
|
|
} value;
|
|
|
|
|
|
|
|
SPLAY_ENTRY(options_entry) entry;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct options {
|
|
|
|
SPLAY_HEAD(options_tree, options_entry) tree;
|
|
|
|
struct options *parent;
|
|
|
|
};
|
|
|
|
|
2008-06-20 10:36:20 +02:00
|
|
|
/* Paste buffer. */
|
|
|
|
struct paste_buffer {
|
|
|
|
char *data;
|
2008-08-28 19:45:30 +02:00
|
|
|
struct timeval tv;
|
2008-06-20 10:36:20 +02:00
|
|
|
};
|
|
|
|
ARRAY_DECL(paste_stack, struct paste_buffer *);
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* Client session. */
|
2008-06-04 18:46:23 +02:00
|
|
|
struct session_alert {
|
|
|
|
struct winlink *wl;
|
|
|
|
int type;
|
|
|
|
|
2008-11-05 02:19:24 +01:00
|
|
|
SLIST_ENTRY(session_alert) entry;
|
2008-06-04 18:46:23 +02:00
|
|
|
};
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
struct session {
|
2007-10-03 23:31:07 +02:00
|
|
|
char *name;
|
2008-08-28 19:45:30 +02:00
|
|
|
struct timeval tv;
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2007-10-04 01:32:26 +02:00
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
|
|
|
|
2007-11-25 00:29:49 +01:00
|
|
|
struct winlink *curw;
|
2008-11-16 11:10:26 +01:00
|
|
|
struct winlink_stack lastw;
|
2007-11-25 00:29:49 +01:00
|
|
|
struct winlinks windows;
|
2007-10-05 20:25:05 +02:00
|
|
|
|
2008-06-03 23:42:37 +02:00
|
|
|
struct options options;
|
|
|
|
|
2008-06-20 10:36:20 +02:00
|
|
|
struct paste_stack buffers;
|
|
|
|
|
2008-11-05 02:19:24 +01:00
|
|
|
SLIST_HEAD(, session_alert) alerts;
|
2007-10-12 13:24:15 +02:00
|
|
|
|
2007-10-05 20:25:05 +02:00
|
|
|
#define SESSION_UNATTACHED 0x1 /* not attached to any clients */
|
|
|
|
int flags;
|
2007-07-09 21:04:12 +02:00
|
|
|
};
|
|
|
|
ARRAY_DECL(sessions, struct session *);
|
|
|
|
|
2007-11-27 20:23:34 +01:00
|
|
|
/* TTY information. */
|
|
|
|
struct tty_key {
|
|
|
|
int code;
|
|
|
|
char *string;
|
|
|
|
|
|
|
|
RB_ENTRY(tty_key) entry;
|
|
|
|
};
|
|
|
|
|
2007-12-06 19:28:55 +01:00
|
|
|
struct tty_term {
|
|
|
|
char *name;
|
|
|
|
TERMINAL *term;
|
|
|
|
u_int references;
|
|
|
|
|
2008-09-09 00:18:03 +02:00
|
|
|
#define TERM_HASDEFAULTS 0x1
|
|
|
|
#define TERM_256COLOURS 0x2
|
2008-09-08 19:40:51 +02:00
|
|
|
int flags;
|
|
|
|
|
2008-11-05 02:19:24 +01:00
|
|
|
SLIST_ENTRY(tty_term) entry;
|
2007-12-06 19:28:55 +01:00
|
|
|
};
|
|
|
|
|
2007-11-27 20:23:34 +01:00
|
|
|
struct tty {
|
|
|
|
char *path;
|
|
|
|
|
2007-12-06 19:28:55 +01:00
|
|
|
char *termname;
|
|
|
|
struct tty_term *term;
|
2007-11-27 20:23:34 +01:00
|
|
|
|
|
|
|
int fd;
|
|
|
|
struct buffer *in;
|
|
|
|
struct buffer *out;
|
|
|
|
|
2008-09-10 00:16:37 +02:00
|
|
|
int log_fd;
|
|
|
|
|
2007-11-27 20:23:34 +01:00
|
|
|
struct termios tio;
|
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
struct grid_cell cell;
|
2007-11-27 20:23:34 +01:00
|
|
|
|
|
|
|
u_char acs[UCHAR_MAX + 1];
|
|
|
|
|
2008-06-20 01:07:11 +02:00
|
|
|
#define TTY_NOCURSOR 0x1
|
2008-06-20 08:36:01 +02:00
|
|
|
#define TTY_FREEZE 0x2
|
2008-06-25 09:30:08 +02:00
|
|
|
#define TTY_ESCAPE 0x4
|
2008-09-10 00:16:37 +02:00
|
|
|
#define TTY_UTF8 0x8
|
2008-06-20 01:07:11 +02:00
|
|
|
int flags;
|
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
int term_flags;
|
|
|
|
|
2008-08-28 19:45:30 +02:00
|
|
|
struct timeval key_timer;
|
2008-06-25 09:30:08 +02:00
|
|
|
|
2007-11-27 20:23:34 +01:00
|
|
|
size_t ksize; /* maximum key size */
|
|
|
|
RB_HEAD(tty_keys, tty_key) ktree;
|
|
|
|
};
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* Client connection. */
|
|
|
|
struct client {
|
|
|
|
int fd;
|
|
|
|
struct buffer *in;
|
|
|
|
struct buffer *out;
|
|
|
|
|
2008-06-18 20:52:44 +02:00
|
|
|
char *title;
|
|
|
|
|
2007-11-27 20:23:34 +01:00
|
|
|
struct tty tty;
|
2008-08-28 19:45:30 +02:00
|
|
|
struct timeval status_timer;
|
2007-11-27 20:23:34 +01:00
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
u_int sx;
|
|
|
|
u_int sy;
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
#define CLIENT_TERMINAL 0x1
|
|
|
|
#define CLIENT_PREFIX 0x2
|
2007-11-28 00:28:51 +01:00
|
|
|
#define CLIENT_MOUSE 0x4
|
2008-06-07 08:47:38 +02:00
|
|
|
#define CLIENT_REDRAW 0x8
|
|
|
|
#define CLIENT_STATUS 0x10
|
2007-10-03 23:31:07 +02:00
|
|
|
int flags;
|
2007-10-03 12:18:32 +02:00
|
|
|
|
2008-06-19 20:27:55 +02:00
|
|
|
char *message_string;
|
2008-08-28 19:45:30 +02:00
|
|
|
struct timeval message_timer;
|
2008-06-19 20:27:55 +02:00
|
|
|
|
|
|
|
char *prompt_string;
|
|
|
|
char *prompt_buffer;
|
2008-06-19 21:40:35 +02:00
|
|
|
size_t prompt_index;
|
|
|
|
void (*prompt_callback)(void *, char *);
|
|
|
|
void *prompt_data;
|
2008-06-19 20:27:55 +02:00
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
struct session *session;
|
|
|
|
};
|
|
|
|
ARRAY_DECL(clients, struct client *);
|
|
|
|
|
2007-09-26 15:43:15 +02:00
|
|
|
/* Client context. */
|
|
|
|
struct client_ctx {
|
|
|
|
int srv_fd;
|
|
|
|
struct buffer *srv_in;
|
|
|
|
struct buffer *srv_out;
|
|
|
|
|
2007-11-27 20:23:34 +01:00
|
|
|
#define CCTX_DETACH 0x1
|
|
|
|
#define CCTX_EXIT 0x2
|
2007-10-05 16:23:28 +02:00
|
|
|
int flags;
|
2007-10-03 23:31:07 +02:00
|
|
|
};
|
2007-09-26 15:43:15 +02:00
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
/* Key/command line command. */
|
|
|
|
struct cmd_ctx {
|
2007-11-16 22:12:31 +01:00
|
|
|
struct client *cmdclient;
|
|
|
|
|
2008-06-02 20:08:17 +02:00
|
|
|
struct client *curclient;
|
|
|
|
struct session *cursession;
|
|
|
|
struct msg_command_data *msgdata;
|
2007-10-03 23:31:07 +02:00
|
|
|
|
|
|
|
void (*print)(struct cmd_ctx *, const char *, ...);
|
2008-06-16 19:35:40 +02:00
|
|
|
void (*info)(struct cmd_ctx *, const char *, ...);
|
2007-10-03 23:31:07 +02:00
|
|
|
void (*error)(struct cmd_ctx *, const char *, ...);
|
2007-10-03 14:34:16 +02:00
|
|
|
};
|
|
|
|
|
2008-06-02 20:08:17 +02:00
|
|
|
struct cmd {
|
|
|
|
const struct cmd_entry *entry;
|
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
struct cmd_entry {
|
2007-10-03 13:26:34 +02:00
|
|
|
const char *name;
|
2007-10-03 23:31:07 +02:00
|
|
|
const char *alias;
|
2007-10-04 23:48:11 +02:00
|
|
|
const char *usage;
|
2007-10-03 23:31:07 +02:00
|
|
|
|
|
|
|
#define CMD_STARTSERVER 0x1
|
2008-06-02 20:08:17 +02:00
|
|
|
#define CMD_CANTNEST 0x2
|
2008-06-05 23:25:00 +02:00
|
|
|
#define CMD_KFLAG 0x4
|
|
|
|
#define CMD_DFLAG 0x8
|
|
|
|
#define CMD_ONEARG 0x10
|
2008-06-29 09:04:31 +02:00
|
|
|
#define CMD_ZEROONEARG 0x20
|
2007-10-03 14:34:16 +02:00
|
|
|
int flags;
|
2007-10-03 23:31:07 +02:00
|
|
|
|
2008-06-05 23:25:00 +02:00
|
|
|
void (*init)(struct cmd *, int);
|
2008-06-05 18:35:32 +02:00
|
|
|
int (*parse)(struct cmd *, int, char **, char **);
|
|
|
|
void (*exec)(struct cmd *, struct cmd_ctx *);
|
|
|
|
void (*send)(struct cmd *, struct buffer *);
|
|
|
|
void (*recv)(struct cmd *, struct buffer *);
|
|
|
|
void (*free)(struct cmd *);
|
|
|
|
void (*print)(struct cmd *, char *, size_t);
|
2007-10-03 23:31:07 +02:00
|
|
|
};
|
|
|
|
|
2008-06-04 18:11:53 +02:00
|
|
|
/* Generic command data. */
|
2008-06-05 23:25:00 +02:00
|
|
|
struct cmd_target_data {
|
|
|
|
int flags;
|
|
|
|
char *target;
|
|
|
|
char *arg;
|
2008-06-04 18:11:53 +02:00
|
|
|
};
|
|
|
|
|
2008-06-05 23:25:00 +02:00
|
|
|
struct cmd_srcdst_data {
|
|
|
|
int flags;
|
|
|
|
char *src;
|
|
|
|
char *dst;
|
|
|
|
char *arg;
|
2008-06-04 18:11:53 +02:00
|
|
|
};
|
|
|
|
|
2008-06-20 10:36:20 +02:00
|
|
|
struct cmd_buffer_data {
|
|
|
|
int flags;
|
|
|
|
char *target;
|
|
|
|
int buffer;
|
|
|
|
char *arg;
|
|
|
|
};
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
/* Key binding. */
|
|
|
|
struct binding {
|
|
|
|
int key;
|
|
|
|
struct cmd *cmd;
|
2007-10-03 13:26:34 +02:00
|
|
|
};
|
2007-10-04 02:18:59 +02:00
|
|
|
ARRAY_DECL(bindings, struct binding *);
|
2007-10-03 13:26:34 +02:00
|
|
|
|
2008-06-23 09:41:21 +02:00
|
|
|
/* Set/display option data. */
|
|
|
|
struct set_option_entry {
|
|
|
|
const char *name;
|
|
|
|
enum {
|
|
|
|
SET_OPTION_STRING,
|
|
|
|
SET_OPTION_NUMBER,
|
2008-09-26 08:45:28 +02:00
|
|
|
SET_OPTION_KEY,
|
2008-06-24 00:12:29 +02:00
|
|
|
SET_OPTION_COLOUR,
|
2008-06-23 09:41:21 +02:00
|
|
|
SET_OPTION_FLAG,
|
|
|
|
SET_OPTION_CHOICE
|
|
|
|
} type;
|
2008-06-24 00:12:29 +02:00
|
|
|
|
2008-06-23 09:41:21 +02:00
|
|
|
u_int minimum;
|
|
|
|
u_int maximum;
|
2008-09-26 08:45:28 +02:00
|
|
|
|
2008-06-23 09:41:21 +02:00
|
|
|
const char **choices;
|
|
|
|
};
|
|
|
|
extern const struct set_option_entry set_option_table[];
|
2008-12-05 21:04:06 +01:00
|
|
|
#define NSETOPTION 18
|
2008-07-02 23:22:57 +02:00
|
|
|
|
|
|
|
/* Edit keys. */
|
|
|
|
enum mode_key {
|
|
|
|
MODEKEY_BOL,
|
|
|
|
MODEKEY_CLEARSEL,
|
|
|
|
MODEKEY_COPYSEL,
|
|
|
|
MODEKEY_DOWN,
|
|
|
|
MODEKEY_EOL,
|
|
|
|
MODEKEY_LEFT,
|
|
|
|
MODEKEY_NONE,
|
|
|
|
MODEKEY_NPAGE,
|
|
|
|
MODEKEY_NWORD,
|
|
|
|
MODEKEY_PPAGE,
|
|
|
|
MODEKEY_PWORD,
|
|
|
|
MODEKEY_QUIT,
|
|
|
|
MODEKEY_RIGHT,
|
|
|
|
MODEKEY_STARTSEL,
|
|
|
|
MODEKEY_UP,
|
|
|
|
};
|
|
|
|
#define MODEKEY_EMACS 0
|
|
|
|
#define MODEKEY_VI 1
|
2008-06-23 09:41:21 +02:00
|
|
|
|
2007-10-31 15:26:26 +01:00
|
|
|
#ifdef NO_STRTONUM
|
|
|
|
/* strtonum.c */
|
|
|
|
long long strtonum(const char *, long long, long long, const char **);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef NO_STRLCPY
|
|
|
|
/* strlcpy.c */
|
|
|
|
size_t strlcpy(char *, const char *, size_t);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef NO_STRLCAT
|
|
|
|
/* strlcat.c */
|
|
|
|
size_t strlcat(char *, const char *, size_t);
|
|
|
|
#endif
|
|
|
|
|
2008-06-18 21:36:27 +02:00
|
|
|
#ifdef NO_DAEMON
|
|
|
|
/* daemon.c */
|
2008-06-18 22:11:25 +02:00
|
|
|
int daemon(int, int);
|
2008-06-18 21:36:27 +02:00
|
|
|
#endif
|
|
|
|
|
2008-06-18 21:52:29 +02:00
|
|
|
#ifdef NO_FORKPTY
|
|
|
|
/* forkpty.c */
|
2008-06-18 22:11:25 +02:00
|
|
|
pid_t forkpty(int *, char *, struct termios *, struct winsize *);
|
2008-06-18 21:52:29 +02:00
|
|
|
#endif
|
|
|
|
|
2008-06-18 22:12:19 +02:00
|
|
|
#ifdef NO_ASPRINTF
|
|
|
|
/* asprintf.c */
|
|
|
|
int asprintf(char **, const char *, ...);
|
|
|
|
int vasprintf(char **, const char *, va_list);
|
|
|
|
#endif
|
|
|
|
|
2008-06-22 23:52:41 +02:00
|
|
|
#ifdef NO_FGETLN
|
|
|
|
/* fgetln.c */
|
|
|
|
char *fgetln(FILE *, size_t *);
|
|
|
|
#endif
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* tmux.c */
|
2007-09-26 15:43:15 +02:00
|
|
|
extern volatile sig_atomic_t sigwinch;
|
|
|
|
extern volatile sig_atomic_t sigterm;
|
2008-06-03 23:42:37 +02:00
|
|
|
extern struct options global_options;
|
2008-06-02 20:08:17 +02:00
|
|
|
extern char *cfg_file;
|
2007-10-19 12:21:36 +02:00
|
|
|
extern int debug_level;
|
2008-06-16 19:35:40 +02:00
|
|
|
extern int be_quiet;
|
2007-09-26 15:43:15 +02:00
|
|
|
void logfile(const char *);
|
|
|
|
void siginit(void);
|
|
|
|
void sigreset(void);
|
|
|
|
|
2008-06-02 20:08:17 +02:00
|
|
|
/* cfg.c */
|
|
|
|
int load_cfg(const char *, char **x);
|
|
|
|
|
2008-07-02 23:22:57 +02:00
|
|
|
/* mode-key.c */
|
|
|
|
enum mode_key mode_key_lookup(int, int);
|
|
|
|
|
2008-06-03 23:42:37 +02:00
|
|
|
/* options.c */
|
|
|
|
int options_cmp(struct options_entry *, struct options_entry *);
|
|
|
|
SPLAY_PROTOTYPE(options_tree, options_entry, entry, options_cmp);
|
|
|
|
void options_init(struct options *, struct options *);
|
|
|
|
void options_free(struct options *);
|
2008-06-23 09:41:21 +02:00
|
|
|
struct options_entry *options_find1(struct options *, const char *);
|
|
|
|
struct options_entry *options_find(struct options *, const char *);
|
2008-06-03 23:42:37 +02:00
|
|
|
void printflike3 options_set_string(
|
|
|
|
struct options *, const char *, const char *, ...);
|
|
|
|
char *options_get_string(struct options *, const char *);
|
|
|
|
void options_set_number(struct options *, const char *, long long);
|
2008-06-15 10:01:54 +02:00
|
|
|
long long options_get_number(struct options *, const char *);
|
2008-06-03 23:42:37 +02:00
|
|
|
|
2007-11-27 20:23:34 +01:00
|
|
|
/* tty.c */
|
|
|
|
void tty_init(struct tty *, char *, char *);
|
2008-06-18 20:52:44 +02:00
|
|
|
void tty_set_title(struct tty *, const char *);
|
2007-11-27 20:23:34 +01:00
|
|
|
int tty_open(struct tty *, char **);
|
|
|
|
void tty_close(struct tty *);
|
|
|
|
void tty_free(struct tty *);
|
2007-12-06 10:46:23 +01:00
|
|
|
void tty_vwrite(struct tty *, struct screen *s, int, va_list);
|
2007-11-27 20:23:34 +01:00
|
|
|
|
|
|
|
/* tty-keys.c */
|
|
|
|
int tty_keys_cmp(struct tty_key *, struct tty_key *);
|
|
|
|
RB_PROTOTYPE(tty_keys, tty_key, entry, tty_keys_cmp);
|
|
|
|
void tty_keys_init(struct tty *);
|
|
|
|
void tty_keys_free(struct tty *);
|
|
|
|
int tty_keys_next(struct tty *, int *);
|
|
|
|
|
|
|
|
/* tty-write.c */
|
|
|
|
void tty_write_client(void *, int, ...);
|
|
|
|
void tty_vwrite_client(void *, int, va_list);
|
|
|
|
void tty_write_window(void *, int, ...);
|
|
|
|
void tty_vwrite_window(void *, int, va_list);
|
|
|
|
void tty_write_session(void *, int, ...);
|
|
|
|
void tty_vwrite_session(void *, int, va_list);
|
|
|
|
|
2008-06-20 10:36:20 +02:00
|
|
|
/* paste.c */
|
|
|
|
void paste_init_stack(struct paste_stack *);
|
|
|
|
void paste_free_stack(struct paste_stack *);
|
|
|
|
struct paste_buffer *paste_walk_stack(struct paste_stack *, uint *);
|
|
|
|
struct paste_buffer *paste_get_top(struct paste_stack *);
|
|
|
|
struct paste_buffer *paste_get_index(struct paste_stack *, u_int);
|
|
|
|
int paste_free_top(struct paste_stack *);
|
|
|
|
int paste_free_index(struct paste_stack *, u_int);
|
2008-06-20 20:45:35 +02:00
|
|
|
void paste_add(struct paste_stack *, const char *, u_int);
|
2008-06-20 10:36:20 +02:00
|
|
|
int paste_replace(struct paste_stack *, u_int, const char *);
|
|
|
|
|
2008-06-05 23:25:00 +02:00
|
|
|
/* arg.c */
|
|
|
|
struct client *arg_parse_client(const char *);
|
|
|
|
struct session *arg_parse_session(const char *);
|
|
|
|
int arg_parse_window(const char *, struct session **, int *);
|
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
/* cmd.c */
|
2008-06-21 16:11:39 +02:00
|
|
|
char *cmd_complete(const char *);
|
2007-10-03 23:31:07 +02:00
|
|
|
struct cmd *cmd_parse(int, char **, char **);
|
|
|
|
void cmd_exec(struct cmd *, struct cmd_ctx *);
|
|
|
|
void cmd_send(struct cmd *, struct buffer *);
|
|
|
|
struct cmd *cmd_recv(struct buffer *);
|
|
|
|
void cmd_free(struct cmd *);
|
|
|
|
void cmd_send_string(struct buffer *, const char *);
|
|
|
|
char *cmd_recv_string(struct buffer *);
|
2008-06-05 23:25:00 +02:00
|
|
|
struct session *cmd_current_session(struct cmd_ctx *);
|
2008-06-02 20:08:17 +02:00
|
|
|
struct client *cmd_find_client(struct cmd_ctx *, const char *);
|
2008-06-05 23:25:00 +02:00
|
|
|
struct session *cmd_find_session(struct cmd_ctx *, const char *);
|
|
|
|
struct winlink *cmd_find_window(
|
|
|
|
struct cmd_ctx *, const char *, struct session **);
|
2008-06-24 00:24:16 +02:00
|
|
|
extern const struct cmd_entry *cmd_table[];
|
2007-10-04 13:52:03 +02:00
|
|
|
extern const struct cmd_entry cmd_attach_session_entry;
|
2007-10-04 11:30:53 +02:00
|
|
|
extern const struct cmd_entry cmd_bind_key_entry;
|
2008-06-19 22:45:21 +02:00
|
|
|
extern const struct cmd_entry cmd_command_prompt_entry;
|
2007-11-22 19:09:43 +01:00
|
|
|
extern const struct cmd_entry cmd_copy_mode_entry;
|
2008-06-20 19:31:48 +02:00
|
|
|
extern const struct cmd_entry cmd_delete_buffer_entry;
|
2007-11-16 22:12:31 +01:00
|
|
|
extern const struct cmd_entry cmd_detach_client_entry;
|
2007-10-25 19:44:25 +02:00
|
|
|
extern const struct cmd_entry cmd_has_session_entry;
|
2008-06-03 07:10:38 +02:00
|
|
|
extern const struct cmd_entry cmd_kill_server_entry;
|
2007-11-12 15:21:41 +01:00
|
|
|
extern const struct cmd_entry cmd_kill_session_entry;
|
2007-10-19 13:10:35 +02:00
|
|
|
extern const struct cmd_entry cmd_kill_window_entry;
|
2007-10-04 02:18:59 +02:00
|
|
|
extern const struct cmd_entry cmd_last_window_entry;
|
2007-10-26 15:03:59 +02:00
|
|
|
extern const struct cmd_entry cmd_link_window_entry;
|
2008-06-20 19:31:48 +02:00
|
|
|
extern const struct cmd_entry cmd_list_buffers_entry;
|
2007-10-23 11:36:19 +02:00
|
|
|
extern const struct cmd_entry cmd_list_clients_entry;
|
2008-06-24 00:24:16 +02:00
|
|
|
extern const struct cmd_entry cmd_list_commands_entry;
|
2007-10-04 02:18:59 +02:00
|
|
|
extern const struct cmd_entry cmd_list_keys_entry;
|
|
|
|
extern const struct cmd_entry cmd_list_sessions_entry;
|
2007-10-04 13:23:17 +02:00
|
|
|
extern const struct cmd_entry cmd_list_windows_entry;
|
2008-06-25 22:33:20 +02:00
|
|
|
extern const struct cmd_entry cmd_move_window_entry;
|
2007-10-04 02:18:59 +02:00
|
|
|
extern const struct cmd_entry cmd_new_session_entry;
|
|
|
|
extern const struct cmd_entry cmd_new_window_entry;
|
|
|
|
extern const struct cmd_entry cmd_next_window_entry;
|
2007-11-23 18:52:54 +01:00
|
|
|
extern const struct cmd_entry cmd_paste_buffer_entry;
|
2007-10-04 02:18:59 +02:00
|
|
|
extern const struct cmd_entry cmd_previous_window_entry;
|
2007-11-16 22:12:31 +01:00
|
|
|
extern const struct cmd_entry cmd_refresh_client_entry;
|
2007-11-09 12:02:01 +01:00
|
|
|
extern const struct cmd_entry cmd_rename_session_entry;
|
2007-10-04 12:39:07 +02:00
|
|
|
extern const struct cmd_entry cmd_rename_window_entry;
|
2008-06-29 09:04:31 +02:00
|
|
|
extern const struct cmd_entry cmd_respawn_window_entry;
|
2007-11-21 14:11:41 +01:00
|
|
|
extern const struct cmd_entry cmd_scroll_mode_entry;
|
2007-10-04 12:54:21 +02:00
|
|
|
extern const struct cmd_entry cmd_select_window_entry;
|
2008-06-01 22:20:25 +02:00
|
|
|
extern const struct cmd_entry cmd_send_keys_entry;
|
2007-10-12 15:03:58 +02:00
|
|
|
extern const struct cmd_entry cmd_send_prefix_entry;
|
2008-06-25 22:43:14 +02:00
|
|
|
extern const struct cmd_entry cmd_select_prompt_entry;
|
2008-06-20 10:36:20 +02:00
|
|
|
extern const struct cmd_entry cmd_set_buffer_entry;
|
2007-10-04 12:11:32 +02:00
|
|
|
extern const struct cmd_entry cmd_set_option_entry;
|
2008-06-04 19:54:27 +02:00
|
|
|
extern const struct cmd_entry cmd_set_window_option_entry;
|
2008-06-20 10:36:20 +02:00
|
|
|
extern const struct cmd_entry cmd_show_buffer_entry;
|
2008-06-15 10:01:54 +02:00
|
|
|
extern const struct cmd_entry cmd_show_options_entry;
|
2008-06-16 08:10:02 +02:00
|
|
|
extern const struct cmd_entry cmd_show_window_options_entry;
|
2008-06-02 23:08:36 +02:00
|
|
|
extern const struct cmd_entry cmd_start_server_entry;
|
2007-10-30 12:10:33 +01:00
|
|
|
extern const struct cmd_entry cmd_swap_window_entry;
|
2007-11-16 22:31:03 +01:00
|
|
|
extern const struct cmd_entry cmd_switch_client_entry;
|
2007-10-04 11:30:53 +02:00
|
|
|
extern const struct cmd_entry cmd_unbind_key_entry;
|
2007-10-26 18:57:32 +02:00
|
|
|
extern const struct cmd_entry cmd_unlink_window_entry;
|
2007-09-26 20:32:17 +02:00
|
|
|
|
2008-06-19 22:45:21 +02:00
|
|
|
/* cmd-string.c */
|
2008-07-25 19:20:40 +02:00
|
|
|
int cmd_string_parse(const char *, struct cmd **, char **);
|
2008-06-19 22:45:21 +02:00
|
|
|
|
2008-06-02 20:08:17 +02:00
|
|
|
/* cmd-generic.c */
|
2008-06-05 23:25:00 +02:00
|
|
|
#define CMD_TARGET_WINDOW_USAGE "[-t target-window]"
|
|
|
|
#define CMD_TARGET_SESSION_USAGE "[-t target-session]"
|
|
|
|
#define CMD_TARGET_CLIENT_USAGE "[-t target-client]"
|
|
|
|
void cmd_target_init(struct cmd *, int);
|
|
|
|
int cmd_target_parse(struct cmd *, int, char **, char **);
|
|
|
|
void cmd_target_exec(struct cmd *, struct cmd_ctx *);
|
|
|
|
void cmd_target_send(struct cmd *, struct buffer *);
|
|
|
|
void cmd_target_recv(struct cmd *, struct buffer *);
|
|
|
|
void cmd_target_free(struct cmd *);
|
|
|
|
void cmd_target_print(struct cmd *, char *, size_t);
|
|
|
|
#define CMD_SRCDST_WINDOW_USAGE "[-s src-window] [-t dst-window]"
|
|
|
|
#define CMD_SRCDST_SESSION_USAGE "[-s src-session] [-t dst-session]"
|
|
|
|
#define CMD_SRCDST_CLIENT_USAGE "[-s src-client] [-t dst-client]"
|
|
|
|
void cmd_srcdst_init(struct cmd *, int);
|
|
|
|
int cmd_srcdst_parse(struct cmd *, int, char **, char **);
|
|
|
|
void cmd_srcdst_exec(struct cmd *, struct cmd_ctx *);
|
|
|
|
void cmd_srcdst_send(struct cmd *, struct buffer *);
|
|
|
|
void cmd_srcdst_recv(struct cmd *, struct buffer *);
|
|
|
|
void cmd_srcdst_free(struct cmd *);
|
|
|
|
void cmd_srcdst_print(struct cmd *, char *, size_t);
|
2008-06-30 07:34:06 +02:00
|
|
|
#define CMD_BUFFER_WINDOW_USAGE "[-b buffer-index] [-t target-window]"
|
|
|
|
#define CMD_BUFFER_SESSION_USAGE "[-b buffer-index] [-t target-session]"
|
|
|
|
#define CMD_BUFFER_CLIENT_USAGE "[-b buffer-index] [-t target-client]"
|
2008-06-20 10:36:20 +02:00
|
|
|
void cmd_buffer_init(struct cmd *, int);
|
|
|
|
int cmd_buffer_parse(struct cmd *, int, char **, char **);
|
|
|
|
void cmd_buffer_exec(struct cmd *, struct cmd_ctx *);
|
|
|
|
void cmd_buffer_send(struct cmd *, struct buffer *);
|
|
|
|
void cmd_buffer_recv(struct cmd *, struct buffer *);
|
|
|
|
void cmd_buffer_free(struct cmd *);
|
|
|
|
void cmd_buffer_print(struct cmd *, char *, size_t);
|
2008-06-02 20:08:17 +02:00
|
|
|
|
2007-09-26 15:43:15 +02:00
|
|
|
/* client.c */
|
2008-09-10 00:16:37 +02:00
|
|
|
int client_init(const char *, struct client_ctx *, int, int);
|
2007-09-28 21:04:21 +02:00
|
|
|
int client_flush(struct client_ctx *);
|
2007-09-26 15:43:15 +02:00
|
|
|
int client_main(struct client_ctx *);
|
|
|
|
|
|
|
|
/* client-msg.c */
|
2007-09-26 20:50:49 +02:00
|
|
|
int client_msg_dispatch(struct client_ctx *, char **);
|
2007-09-26 15:43:15 +02:00
|
|
|
|
2007-10-03 12:18:32 +02:00
|
|
|
/* client-fn.c */
|
|
|
|
void client_write_server(struct client_ctx *, enum hdrtype, void *, size_t);
|
2007-10-03 14:34:16 +02:00
|
|
|
void client_write_server2(
|
|
|
|
struct client_ctx *, enum hdrtype, void *, size_t, void *, size_t);
|
2007-10-23 12:48:23 +02:00
|
|
|
void client_fill_session(struct msg_command_data *);
|
2007-10-03 12:18:32 +02:00
|
|
|
|
2007-10-03 23:31:07 +02:00
|
|
|
/* key-bindings.c */
|
2007-10-04 02:18:59 +02:00
|
|
|
extern struct bindings key_bindings;
|
2007-10-03 23:31:07 +02:00
|
|
|
void key_bindings_add(int, struct cmd *);
|
|
|
|
void key_bindings_remove(int);
|
|
|
|
void key_bindings_init(void);
|
|
|
|
void key_bindings_free(void);
|
|
|
|
void key_bindings_dispatch(int, struct client *);
|
2008-06-19 22:45:21 +02:00
|
|
|
void printflike2 key_bindings_error(struct cmd_ctx *, const char *, ...);
|
|
|
|
void printflike2 key_bindings_print(struct cmd_ctx *, const char *, ...);
|
|
|
|
void printflike2 key_bindings_info(struct cmd_ctx *, const char *, ...);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2007-10-03 13:26:34 +02:00
|
|
|
/* key-string.c */
|
2007-10-04 02:18:59 +02:00
|
|
|
int key_string_lookup_string(const char *);
|
|
|
|
const char *key_string_lookup_key(int);
|
2007-10-03 13:26:34 +02:00
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* server.c */
|
2007-09-26 12:35:24 +02:00
|
|
|
extern struct clients clients;
|
2008-06-07 09:27:28 +02:00
|
|
|
int server_start(const char *);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2007-09-26 12:35:24 +02:00
|
|
|
/* server-msg.c */
|
2007-09-26 15:43:15 +02:00
|
|
|
int server_msg_dispatch(struct client *);
|
2007-09-26 12:35:24 +02:00
|
|
|
|
|
|
|
/* server-fn.c */
|
2008-06-19 20:27:55 +02:00
|
|
|
void server_set_client_message(struct client *, const char *);
|
|
|
|
void server_clear_client_message(struct client *);
|
2008-06-19 21:40:35 +02:00
|
|
|
void server_set_client_prompt(
|
|
|
|
struct client *, const char *, void (*)(void *, char *), void *);
|
|
|
|
void server_clear_client_prompt(struct client *);
|
2007-10-23 12:48:23 +02:00
|
|
|
struct session *server_extract_session(
|
|
|
|
struct msg_command_data *, char *, char **);
|
2007-09-29 11:53:25 +02:00
|
|
|
void server_write_client(
|
|
|
|
struct client *, enum hdrtype, const void *, size_t);
|
2007-10-04 02:02:10 +02:00
|
|
|
void server_write_session(
|
|
|
|
struct session *, enum hdrtype, const void *, size_t);
|
2007-11-27 20:23:34 +01:00
|
|
|
void server_write_window(
|
2007-10-19 12:21:36 +02:00
|
|
|
struct window *, enum hdrtype, const void *, size_t);
|
2007-10-04 02:02:10 +02:00
|
|
|
void server_redraw_client(struct client *);
|
2007-11-27 20:23:34 +01:00
|
|
|
void server_status_client(struct client *);
|
2007-10-04 02:02:10 +02:00
|
|
|
void server_redraw_session(struct session *);
|
2007-11-27 20:23:34 +01:00
|
|
|
void server_status_session(struct session *);
|
|
|
|
void server_redraw_window(struct window *);
|
|
|
|
void server_status_window(struct window *);
|
2007-09-26 12:35:24 +02:00
|
|
|
|
2007-10-01 16:53:29 +02:00
|
|
|
/* status.c */
|
2008-06-19 21:40:35 +02:00
|
|
|
void status_redraw(struct client *);
|
|
|
|
void status_message_redraw(struct client *);
|
|
|
|
void status_prompt_redraw(struct client *);
|
|
|
|
void status_prompt_key(struct client *, int);
|
2007-10-01 16:53:29 +02:00
|
|
|
|
2007-10-04 21:03:52 +02:00
|
|
|
/* resize.c */
|
|
|
|
void recalculate_sizes(void);
|
|
|
|
|
2007-09-26 20:09:23 +02:00
|
|
|
/* input.c */
|
2007-10-24 17:29:29 +02:00
|
|
|
void input_init(struct window *);
|
|
|
|
void input_free(struct window *);
|
2007-11-27 20:23:34 +01:00
|
|
|
void input_parse(struct window *);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2007-09-29 00:47:22 +02:00
|
|
|
/* input-key.c */
|
2007-11-27 20:23:34 +01:00
|
|
|
void input_key(struct window *, int);
|
2007-09-29 00:47:22 +02:00
|
|
|
|
2008-09-10 20:59:29 +02:00
|
|
|
/* colour.c */
|
|
|
|
const char *colour_tostring(u_char);
|
|
|
|
u_char colour_fromstring(const char *);
|
2008-10-10 00:00:33 +02:00
|
|
|
u_char colour_translate256(u_char);
|
2008-09-10 20:59:29 +02:00
|
|
|
|
2008-09-25 22:08:57 +02:00
|
|
|
/* grid.c */
|
|
|
|
extern const struct grid_cell grid_default_cell;
|
|
|
|
struct grid_data *grid_create(u_int, u_int, u_int);
|
|
|
|
void grid_destroy(struct grid_data *);
|
|
|
|
void grid_reduce_line(struct grid_data *, u_int, u_int);
|
|
|
|
void grid_expand_line(struct grid_data *, u_int, u_int);
|
|
|
|
void grid_scroll_line(struct grid_data *);
|
|
|
|
const struct grid_cell *grid_peek_cell(struct grid_data *, u_int, u_int);
|
|
|
|
struct grid_cell *grid_get_cell(struct grid_data *, u_int, u_int);
|
|
|
|
void grid_set_cell(
|
|
|
|
struct grid_data *, u_int, u_int, const struct grid_cell *);
|
|
|
|
void grid_clear(struct grid_data *, u_int, u_int, u_int, u_int);
|
|
|
|
void grid_fill(struct grid_data *,
|
|
|
|
const struct grid_cell *, u_int, u_int, u_int, u_int);
|
|
|
|
void grid_fill_lines(
|
|
|
|
struct grid_data *, const struct grid_cell *, u_int, u_int);
|
|
|
|
void grid_clear_lines(struct grid_data *, u_int, u_int);
|
|
|
|
void grid_move_lines(struct grid_data *, u_int, u_int, u_int);
|
|
|
|
void grid_clear_cells(struct grid_data *, u_int, u_int, u_int);
|
|
|
|
void grid_move_cells(struct grid_data *, u_int, u_int, u_int, u_int);
|
|
|
|
|
|
|
|
/* grid-view.c */
|
|
|
|
const struct grid_cell *grid_view_peek_cell(struct grid_data *, u_int, u_int);
|
|
|
|
struct grid_cell *grid_view_get_cell(struct grid_data *, u_int, u_int);
|
|
|
|
void grid_view_set_cell(
|
|
|
|
struct grid_data *, u_int, u_int, const struct grid_cell *);
|
|
|
|
void grid_view_clear(struct grid_data *, u_int, u_int, u_int, u_int);
|
|
|
|
void grid_view_fill(struct grid_data *,
|
|
|
|
const struct grid_cell *, u_int, u_int, u_int, u_int);
|
|
|
|
void grid_view_scroll_region_up(struct grid_data *, u_int, u_int);
|
|
|
|
void grid_view_scroll_region_down(struct grid_data *, u_int, u_int);
|
|
|
|
void grid_view_insert_lines(struct grid_data *, u_int, u_int);
|
|
|
|
void grid_view_insert_lines_region(
|
|
|
|
struct grid_data *, u_int, u_int, u_int, u_int);
|
|
|
|
void grid_view_delete_lines(struct grid_data *, u_int, u_int);
|
|
|
|
void grid_view_delete_lines_region(
|
|
|
|
struct grid_data *, u_int, u_int, u_int, u_int);
|
|
|
|
void grid_view_insert_cells(struct grid_data *, u_int, u_int, u_int);
|
|
|
|
void grid_view_delete_cells(struct grid_data *, u_int, u_int, u_int);
|
2007-12-06 10:46:23 +01:00
|
|
|
|
|
|
|
/* screen-write.c */
|
|
|
|
void screen_write_start_window(struct screen_write_ctx *, struct window *);
|
|
|
|
void screen_write_start_client(struct screen_write_ctx *, struct client *);
|
|
|
|
void screen_write_start_session(
|
2008-09-25 22:08:57 +02:00
|
|
|
struct screen_write_ctx *, struct session *);
|
2007-12-06 10:46:23 +01:00
|
|
|
void screen_write_start(struct screen_write_ctx *,
|
2008-09-25 22:08:57 +02:00
|
|
|
struct screen *, void (*)(void *, int, ...), void *);
|
2007-12-06 10:46:23 +01:00
|
|
|
void screen_write_stop(struct screen_write_ctx *);
|
2008-09-25 22:08:57 +02:00
|
|
|
void printflike3 screen_write_puts(
|
|
|
|
struct screen_write_ctx *, struct grid_cell *, const char *, ...);
|
|
|
|
void screen_write_putc(
|
|
|
|
struct screen_write_ctx *, struct grid_cell *, u_char);
|
|
|
|
void screen_write_copy(struct screen_write_ctx *,
|
|
|
|
struct screen *, u_int, u_int, u_int, u_int);
|
|
|
|
void screen_write_cursorup(struct screen_write_ctx *, u_int);
|
|
|
|
void screen_write_cursordown(struct screen_write_ctx *, u_int);
|
|
|
|
void screen_write_cursorright(struct screen_write_ctx *, u_int);
|
|
|
|
void screen_write_cursorleft(struct screen_write_ctx *, u_int);
|
|
|
|
void screen_write_insertcharacter(struct screen_write_ctx *, u_int);
|
|
|
|
void screen_write_deletecharacter(struct screen_write_ctx *, u_int);
|
|
|
|
void screen_write_insertline(struct screen_write_ctx *, u_int);
|
|
|
|
void screen_write_deleteline(struct screen_write_ctx *, u_int);
|
|
|
|
void screen_write_clearline(struct screen_write_ctx *);
|
|
|
|
void screen_write_clearendofline(struct screen_write_ctx *);
|
|
|
|
void screen_write_clearstartofline(struct screen_write_ctx *);
|
|
|
|
void screen_write_cursormove(struct screen_write_ctx *, u_int, u_int);
|
|
|
|
void screen_write_cursormode(struct screen_write_ctx *, int);
|
|
|
|
void screen_write_reverseindex(struct screen_write_ctx *);
|
|
|
|
void screen_write_scrollregion(struct screen_write_ctx *, u_int, u_int);
|
|
|
|
void screen_write_insertmode(struct screen_write_ctx *, int);
|
|
|
|
void screen_write_mousemode(struct screen_write_ctx *, int);
|
|
|
|
void screen_write_linefeed(struct screen_write_ctx *);
|
|
|
|
void screen_write_carriagereturn(struct screen_write_ctx *);
|
|
|
|
void screen_write_kcursormode(struct screen_write_ctx *, int);
|
|
|
|
void screen_write_kkeypadmode(struct screen_write_ctx *, int);
|
|
|
|
void screen_write_clearendofscreen(struct screen_write_ctx *);
|
|
|
|
void screen_write_clearstartofscreen(struct screen_write_ctx *);
|
|
|
|
void screen_write_clearscreen(struct screen_write_ctx *);
|
|
|
|
void screen_write_cell(struct screen_write_ctx *, const struct grid_cell *);
|
2007-12-06 10:46:23 +01:00
|
|
|
|
|
|
|
/* screen-redraw.c */
|
|
|
|
void screen_redraw_start_window(struct screen_redraw_ctx *, struct window *);
|
|
|
|
void screen_redraw_start_client(struct screen_redraw_ctx *, struct client *);
|
|
|
|
void screen_redraw_start_session(
|
|
|
|
struct screen_redraw_ctx *, struct session *);
|
|
|
|
void screen_redraw_start(struct screen_redraw_ctx *,
|
|
|
|
struct screen *, void (*)(void *, int, ...), void *);
|
|
|
|
void screen_redraw_stop(struct screen_redraw_ctx *);
|
2008-09-25 22:08:57 +02:00
|
|
|
void printflike3 screen_redraw_puts(
|
|
|
|
struct screen_redraw_ctx *, struct grid_cell *, const char *, ...);
|
|
|
|
void screen_redraw_putc(
|
|
|
|
struct screen_redraw_ctx *, struct grid_cell *, u_char);
|
2007-12-06 10:46:23 +01:00
|
|
|
void screen_redraw_cell(struct screen_redraw_ctx *, u_int, u_int);
|
|
|
|
void screen_redraw_lines(struct screen_redraw_ctx *, u_int, u_int);
|
2008-06-14 18:47:20 +02:00
|
|
|
void screen_redraw_columns(struct screen_redraw_ctx *, u_int, u_int);
|
2007-11-20 22:42:29 +01:00
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* screen.c */
|
2008-09-10 21:15:06 +02:00
|
|
|
void screen_init(struct screen *, u_int, u_int, u_int);
|
|
|
|
void screen_reinit(struct screen *);
|
|
|
|
void screen_free(struct screen *);
|
2008-09-25 22:08:57 +02:00
|
|
|
void screen_set_title(struct screen *, const char *);
|
2007-07-09 21:04:12 +02:00
|
|
|
void screen_resize(struct screen *, u_int, u_int);
|
2007-12-06 10:46:23 +01:00
|
|
|
void screen_set_selection(struct screen *, u_int, u_int, u_int, u_int);
|
|
|
|
void screen_clear_selection(struct screen *);
|
|
|
|
int screen_check_selection(struct screen *, u_int, u_int);
|
2008-09-25 22:08:57 +02:00
|
|
|
void screen_display_copy_area(struct screen *, struct screen *,
|
|
|
|
u_int, u_int, u_int, u_int, u_int, u_int);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/* window.c */
|
|
|
|
extern struct windows windows;
|
2007-10-26 14:29:07 +02:00
|
|
|
int window_cmp(struct window *, struct window *);
|
|
|
|
int winlink_cmp(struct winlink *, struct winlink *);
|
|
|
|
RB_PROTOTYPE(windows, window, entry, window_cmp);
|
|
|
|
RB_PROTOTYPE(winlinks, winlink, entry, winlink_cmp);
|
|
|
|
struct winlink *winlink_find_by_index(struct winlinks *, int);
|
|
|
|
struct winlink *winlink_find_by_window(struct winlinks *, struct window *);
|
|
|
|
int winlink_next_index(struct winlinks *);
|
|
|
|
struct winlink *winlink_add(struct winlinks *, struct window *, int);
|
|
|
|
void winlink_remove(struct winlinks *, struct winlink *);
|
|
|
|
struct winlink *winlink_next(struct winlinks *, struct winlink *);
|
|
|
|
struct winlink *winlink_previous(struct winlinks *, struct winlink *);
|
2008-11-16 11:10:26 +01:00
|
|
|
void winlink_stack_push(struct winlink_stack *, struct winlink *);
|
|
|
|
void winlink_stack_remove(struct winlink_stack *, struct winlink *);
|
2008-06-03 23:42:37 +02:00
|
|
|
struct window *window_create(const char *,
|
2008-07-25 00:21:28 +02:00
|
|
|
const char *, const char **, u_int, u_int, u_int);
|
2008-06-29 09:04:31 +02:00
|
|
|
int window_spawn(struct window *, const char *, const char **);
|
2007-07-09 21:04:12 +02:00
|
|
|
void window_destroy(struct window *);
|
|
|
|
int window_resize(struct window *, u_int, u_int);
|
2007-12-06 11:04:43 +01:00
|
|
|
int window_set_mode(struct window *, const struct window_mode *);
|
|
|
|
void window_reset_mode(struct window *);
|
2007-11-27 20:23:34 +01:00
|
|
|
void window_parse(struct window *);
|
2008-06-20 19:31:48 +02:00
|
|
|
void window_key(struct window *, struct client *, int);
|
2007-11-21 14:11:41 +01:00
|
|
|
|
2007-11-22 19:09:43 +01:00
|
|
|
/* window-copy.c */
|
|
|
|
extern const struct window_mode window_copy_mode;
|
|
|
|
|
2007-11-21 14:11:41 +01:00
|
|
|
/* window-scroll.c */
|
|
|
|
extern const struct window_mode window_scroll_mode;
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2007-11-21 20:44:05 +01:00
|
|
|
/* window-more.c */
|
|
|
|
extern const struct window_mode window_more_mode;
|
|
|
|
void window_more_vadd(struct window *, const char *, va_list);
|
|
|
|
void printflike2 window_more_add(struct window *, const char *, ...);
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* session.c */
|
|
|
|
extern struct sessions sessions;
|
2008-06-06 19:55:27 +02:00
|
|
|
void session_alert_add(struct session *, struct window *, int);
|
|
|
|
void session_alert_cancel(struct session *, struct winlink *);
|
|
|
|
int session_alert_has(struct session *, struct winlink *, int);
|
|
|
|
int session_alert_has_window(struct session *, struct window *, int);
|
2007-07-09 21:04:12 +02:00
|
|
|
struct session *session_find(const char *);
|
|
|
|
struct session *session_create(const char *, const char *, u_int, u_int);
|
2008-06-06 19:55:27 +02:00
|
|
|
void session_destroy(struct session *);
|
|
|
|
int session_index(struct session *, u_int *);
|
2007-10-26 14:29:07 +02:00
|
|
|
struct winlink *session_new(struct session *, const char *, const char *, int);
|
|
|
|
struct winlink *session_attach(struct session *, struct window *, int);
|
|
|
|
int session_detach(struct session *, struct winlink *);
|
2007-07-09 21:04:12 +02:00
|
|
|
int session_has(struct session *, struct window *);
|
|
|
|
int session_next(struct session *);
|
|
|
|
int session_previous(struct session *);
|
2007-10-26 18:57:32 +02:00
|
|
|
int session_select(struct session *, int);
|
2007-09-20 20:03:23 +02:00
|
|
|
int session_last(struct session *);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
2008-09-10 00:16:37 +02:00
|
|
|
/* utf8.c */
|
2008-09-25 22:08:57 +02:00
|
|
|
u_int utf8_combine(const u_char [4]);
|
|
|
|
void utf8_split(u_int, u_char [4]);
|
|
|
|
int utf8_width(u_int);
|
2008-09-10 00:16:37 +02:00
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
/* buffer.c */
|
|
|
|
struct buffer *buffer_create(size_t);
|
|
|
|
void buffer_destroy(struct buffer *);
|
|
|
|
void buffer_clear(struct buffer *);
|
|
|
|
void buffer_ensure(struct buffer *, size_t);
|
|
|
|
void buffer_add(struct buffer *, size_t);
|
|
|
|
void buffer_reverse_add(struct buffer *, size_t);
|
|
|
|
void buffer_remove(struct buffer *, size_t);
|
|
|
|
void buffer_reverse_remove(struct buffer *, size_t);
|
|
|
|
void buffer_insert_range(struct buffer *, size_t, size_t);
|
|
|
|
void buffer_delete_range(struct buffer *, size_t, size_t);
|
|
|
|
void buffer_write(struct buffer *, const void *, size_t);
|
|
|
|
void buffer_read(struct buffer *, void *, size_t);
|
2007-11-27 20:23:34 +01:00
|
|
|
void buffer_write8(struct buffer *, uint8_t);
|
|
|
|
void buffer_write16(struct buffer *, uint16_t);
|
|
|
|
uint8_t buffer_read8(struct buffer *);
|
|
|
|
uint16_t buffer_read16(struct buffer *);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/* buffer-poll.c */
|
2007-11-30 12:08:35 +01:00
|
|
|
void buffer_set(
|
|
|
|
struct pollfd *, int, struct buffer *, struct buffer *);
|
2007-07-09 21:04:12 +02:00
|
|
|
int buffer_poll(struct pollfd *, struct buffer *, struct buffer *);
|
2007-11-27 20:23:34 +01:00
|
|
|
void buffer_flush(int, struct buffer *n, struct buffer *);
|
2007-07-09 21:04:12 +02:00
|
|
|
|
|
|
|
/* log.c */
|
2008-08-08 19:35:42 +02:00
|
|
|
#define LOG_FACILITY LOG_DAEMON
|
|
|
|
void log_open_syslog(int);
|
|
|
|
void log_open_tty(int);
|
|
|
|
void log_open_file(int, const char *);
|
2007-07-09 21:04:12 +02:00
|
|
|
void log_close(void);
|
2008-08-08 19:35:42 +02:00
|
|
|
void log_vwrite(int, const char *, va_list);
|
|
|
|
void log_write(int, const char *, ...);
|
2007-07-09 21:04:12 +02:00
|
|
|
void printflike1 log_warn(const char *, ...);
|
|
|
|
void printflike1 log_warnx(const char *, ...);
|
|
|
|
void printflike1 log_info(const char *, ...);
|
|
|
|
void printflike1 log_debug(const char *, ...);
|
|
|
|
void printflike1 log_debug2(const char *, ...);
|
|
|
|
void printflike1 log_debug3(const char *, ...);
|
|
|
|
__dead void log_vfatal(const char *, va_list);
|
|
|
|
__dead void log_fatal(const char *, ...);
|
|
|
|
__dead void log_fatalx(const char *, ...);
|
|
|
|
|
|
|
|
/* xmalloc.c */
|
|
|
|
char *xstrdup(const char *);
|
|
|
|
void *xcalloc(size_t, size_t);
|
|
|
|
void *xmalloc(size_t);
|
|
|
|
void *xrealloc(void *, size_t, size_t);
|
|
|
|
void xfree(void *);
|
|
|
|
int printflike2 xasprintf(char **, const char *, ...);
|
|
|
|
int xvasprintf(char **, const char *, va_list);
|
|
|
|
int printflike3 xsnprintf(char *, size_t, const char *, ...);
|
|
|
|
int xvsnprintf(char *, size_t, const char *, va_list);
|
|
|
|
int printflike3 printpath(char *, size_t, const char *, ...);
|
|
|
|
char *xdirname(const char *);
|
|
|
|
char *xbasename(const char *);
|
|
|
|
|
2007-07-26 01:13:18 +02:00
|
|
|
/* xmalloc-debug.c */
|
|
|
|
#ifdef DEBUG
|
|
|
|
#define xmalloc_caller() __builtin_return_address(0)
|
|
|
|
|
|
|
|
void xmalloc_clear(void);
|
|
|
|
void xmalloc_report(pid_t, const char *);
|
|
|
|
|
|
|
|
void xmalloc_new(void *, void *, size_t);
|
|
|
|
void xmalloc_change(void *, void *, void *, size_t);
|
|
|
|
void xmalloc_free(void *);
|
|
|
|
#endif
|
|
|
|
|
2007-07-09 21:04:12 +02:00
|
|
|
#endif
|