Fix unexpected network error 5000
[u/mdw/putty] / putty.h
CommitLineData
374330e2 1#ifndef PUTTY_PUTTY_H
2#define PUTTY_PUTTY_H
3
4#define PUTTY_REG_POS "Software\\SimonTatham\\PuTTY"
5
6/*
7 * Global variables. Most modules declare these `extern', but
8 * window.c will do `#define PUTTY_DO_GLOBALS' before including this
9 * module, and so will get them properly defined.
10 */
11#ifdef PUTTY_DO_GLOBALS
12#define GLOBAL
13#else
14#define GLOBAL extern
15#endif
16
73251d5d 17GLOBAL HINSTANCE putty_inst;
18
374330e2 19#define ATTR_ACTCURS 0x80000000UL /* active cursor (block) */
20#define ATTR_PASCURS 0x40000000UL /* passive cursor (box) */
21#define ATTR_INVALID 0x20000000UL
22#define ATTR_WRAPPED 0x10000000UL
23
24#define ATTR_ASCII 0x00000000UL /* normal ASCII charset ESC ( B */
25#define ATTR_GBCHR 0x00100000UL /* UK variant charset ESC ( A */
26#define ATTR_LINEDRW 0x00200000UL /* line drawing charset ESC ( 0 */
27
28#define ATTR_BOLD 0x00000100UL
29#define ATTR_UNDER 0x00000200UL
30#define ATTR_REVERSE 0x00000400UL
31#define ATTR_FGMASK 0x0000F000UL
32#define ATTR_BGMASK 0x000F0000UL
33#define ATTR_FGSHIFT 12
34#define ATTR_BGSHIFT 16
35
36#define ATTR_DEFAULT 0x00098000UL
37#define ATTR_DEFFG 0x00008000UL
38#define ATTR_DEFBG 0x00090000UL
39#define ATTR_CUR_XOR 0x000BA000UL
40#define ERASE_CHAR (ATTR_DEFAULT | ' ')
41#define ATTR_MASK 0xFFFFFF00UL
42#define CHAR_MASK 0x000000FFUL
43
44typedef HDC Context;
45#define SEL_NL { 13, 10 }
46
47GLOBAL int rows, cols, savelines;
48
49GLOBAL int font_width, font_height;
50
51#define INBUF_SIZE 2048
52#define INBUF_MASK (INBUF_SIZE-1)
53GLOBAL unsigned char inbuf[INBUF_SIZE];
54GLOBAL int inbuf_head, inbuf_reap;
55
56#define OUTBUF_SIZE 2048
57#define OUTBUF_MASK (OUTBUF_SIZE-1)
58GLOBAL unsigned char outbuf[OUTBUF_SIZE];
59GLOBAL int outbuf_head, outbuf_reap;
60
61GLOBAL int has_focus;
62
63GLOBAL int app_cursor_keys, app_keypad_keys;
64
65#define WM_NETEVENT (WM_USER + 1)
66
67typedef enum {
68 TS_AYT, TS_BRK, TS_SYNCH, TS_EC, TS_EL, TS_GA, TS_NOP, TS_ABORT,
69 TS_AO, TS_IP, TS_SUSP, TS_EOR, TS_EOF
70} Telnet_Special;
71
72typedef enum {
73 MB_NOTHING, MB_SELECT, MB_EXTEND, MB_PASTE
74} Mouse_Button;
75
76typedef enum {
77 MA_NOTHING, MA_CLICK, MA_2CLK, MA_3CLK, MA_DRAG, MA_RELEASE
78} Mouse_Action;
79
80typedef enum {
81 VT_XWINDOWS, VT_OEMANSI, VT_OEMONLY, VT_POORMAN
82} VT_Mode;
83
84typedef struct {
85 char *(*init) (HWND hwnd, char *host, int port, char **realhost);
86 int (*msg) (WPARAM wParam, LPARAM lParam);
87 void (*send) (char *buf, int len);
88 void (*size) (void);
89 void (*special) (Telnet_Special code);
90} Backend;
91
92GLOBAL Backend *back;
93
94typedef struct {
95 /* Basic options */
96 char host[512];
97 int port;
5e1a8e27 98 enum { PROT_RAW, PROT_TELNET, PROT_SSH } protocol;
374330e2 99 int close_on_exit;
9ef49106 100 int warn_on_close;
fef97f43 101 /* SSH options */
102 int nopty;
9697bfd2 103 enum { CIPHER_3DES, CIPHER_BLOWFISH, CIPHER_DES } cipher;
ccbfb941 104 int try_tis_auth;
374330e2 105 /* Telnet options */
106 char termtype[32];
107 char termspeed[32];
37508af4 108 char environmt[1024]; /* VAR\tvalue\0VAR\tvalue\0\0 */
374330e2 109 char username[32];
110 int rfc_environ;
111 /* Keyboard options */
112 int bksp_is_delete;
113 int rxvt_homeend;
114 int linux_funkeys;
115 int app_cursor;
116 int app_keypad;
c5e9c988 117 int nethack_keypad;
118 int alt_f4; /* is it special? */
119 int alt_space; /* is it special? */
374330e2 120 /* Terminal options */
121 int savelines;
122 int dec_om;
123 int wrap_mode;
fef97f43 124 int lfhascr;
374330e2 125 int win_name_always;
126 int width, height;
127 char font[64];
128 int fontisbold;
129 int fontheight;
14963b8f 130 int fontcharset;
374330e2 131 VT_Mode vtmode;
132 /* Colour options */
133 int try_palette;
134 int bold_colour;
135 unsigned char colours[22][3];
136 /* Selection options */
137 int mouse_is_xterm;
138 short wordness[256];
14963b8f 139 /* russian language translation */
140 int xlat_enablekoiwin;
141 int xlat_capslockcyr;
374330e2 142} Config;
143
e277c42d 144/*
145 * You can compile with -DSSH_DEFAULT to have ssh by default.
146 */
147#ifndef SSH_DEFAULT
148#define DEFAULT_PROTOCOL PROT_TELNET
149#define DEFAULT_PORT 23
150#else
151#define DEFAULT_PROTOCOL PROT_SSH
152#define DEFAULT_PORT 22
153#endif
154
374330e2 155GLOBAL Config cfg;
e277c42d 156GLOBAL int default_protocol;
157GLOBAL int default_port;
374330e2 158
159/*
160 * Exports from window.c.
161 */
162void request_resize (int, int);
163void do_text (Context, int, int, char *, int, unsigned long);
164void set_title (char *);
165void set_icon (char *);
166void set_sbar (int, int, int);
f67b4e85 167Context get_ctx(void);
374330e2 168void free_ctx (Context);
169void palette_set (int, int, int, int);
170void palette_reset (void);
171void write_clip (void *, int);
172void get_clip (void **, int *);
173void optimised_move (int, int, int);
174void fatalbox (char *, ...);
175void beep (void);
176#define OPTIMISE_IS_SCROLL 1
177
178/*
179 * Exports from noise.c.
180 */
181void noise_get_heavy(void (*func) (void *, int));
182void noise_get_light(void (*func) (void *, int));
183void noise_ultralight(DWORD data);
184void random_save_seed(void);
185
186/*
187 * Exports from windlg.c.
188 */
189int do_config (void);
190int do_reconfig (HWND);
191void do_defaults (char *);
c5e9c988 192void logevent (char *);
193void showeventlog (HWND);
374330e2 194void showabout (HWND);
195void verify_ssh_host_key(char *host, struct RSAKey *key);
0a4aa984 196void get_sesslist(int allocate);
197
7393a137 198GLOBAL int nsessions;
199GLOBAL char **sessions;
374330e2 200
201/*
202 * Exports from terminal.c.
203 */
204
205void term_init (void);
206void term_size (int, int, int);
207void term_out (void);
208void term_paint (Context, int, int, int, int);
209void term_scroll (int, int);
210void term_pwron (void);
211void term_clrsb (void);
212void term_mouse (Mouse_Button, Mouse_Action, int, int);
213void term_deselect (void);
214void term_update (void);
215void term_invalidate(void);
216
217/*
5e1a8e27 218 * Exports from raw.c.
219 */
220
221Backend raw_backend;
222
223/*
374330e2 224 * Exports from telnet.c.
225 */
226
c14776e8 227extern Backend telnet_backend;
374330e2 228
229/*
230 * Exports from ssh.c.
231 */
232
c14776e8 233extern Backend ssh_backend;
374330e2 234
235/*
236 * Exports from sshrand.c.
237 */
238
239void random_add_noise(void *noise, int length);
240void random_init(void);
241int random_byte(void);
242void random_get_savedata(void **data, int *len);
243
244/*
245 * Exports from misc.c.
246 */
247
248/* #define MALLOC_LOG do this if you suspect putty of leaking memory */
249#ifdef MALLOC_LOG
250#define smalloc(z) (mlog(__FILE__,__LINE__), safemalloc(z))
251#define srealloc(y,z) (mlog(__FILE__,__LINE__), saferealloc(y,z))
252#define sfree(z) (mlog(__FILE__,__LINE__), safefree(z))
253void mlog(char *, int);
254#else
255#define smalloc safemalloc
256#define srealloc saferealloc
257#define sfree safefree
258#endif
259
260void *safemalloc(size_t);
261void *saferealloc(void *, size_t);
262void safefree(void *);
263
264/*
067a15ea 265 * Exports from version.c.
266 */
267extern char ver[];
268
269/*
b73fd1b1 270 * Exports from sizetip.c.
271 */
272void UpdateSizeTip(HWND src, int cx, int cy);
273void EnableSizeTip(int bEnable);
274
275/*
14963b8f 276 * Exports from xlat.c.
277 */
278unsigned char xlat_kbd2tty(unsigned char c);
279unsigned char xlat_tty2scr(unsigned char c);
280unsigned char xlat_latkbd2win(unsigned char c);
281
282/*
374330e2 283 * A debug system.
284 */
285#ifdef DEBUG
286#include <stdarg.h>
287#define debug(x) (dprintf x)
288static void dprintf(char *fmt, ...) {
289 char buf[2048];
290 DWORD dw;
291 va_list ap;
292 static int gotconsole = 0;
293
294 if (!gotconsole) {
295 AllocConsole();
296 gotconsole = 1;
297 }
298
299 va_start(ap, fmt);
300 vsprintf(buf, fmt, ap);
301 WriteFile (GetStdHandle(STD_OUTPUT_HANDLE), buf, strlen(buf), &dw, NULL);
302 va_end(ap);
303}
304#else
305#define debug(x)
306#endif
307
308#endif