mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
9d9426785f
[originally from svn r211]
164 lines
4.0 KiB
C
164 lines
4.0 KiB
C
/* $Id: testback.c,v 1.1.2.8 1999/09/01 22:16:15 ben Exp $ */
|
|
/*
|
|
* Copyright (c) 1999 Simon Tatham
|
|
* Copyright (c) 1999 Ben Harris
|
|
* All rights reserved.
|
|
*
|
|
* Permission is hereby granted, free of charge, to any person
|
|
* obtaining a copy of this software and associated documentation
|
|
* files (the "Software"), to deal in the Software without
|
|
* restriction, including without limitation the rights to use,
|
|
* copy, modify, merge, publish, distribute, sublicense, and/or
|
|
* sell copies of the Software, and to permit persons to whom the
|
|
* Software is furnished to do so, subject to the following
|
|
* conditions:
|
|
*
|
|
* The above copyright notice and this permission notice shall be
|
|
* included in all copies or substantial portions of the Software.
|
|
*
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
* EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
* NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR
|
|
* ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
|
|
* CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
|
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
* SOFTWARE.
|
|
*/
|
|
|
|
/* PuTTY test backends */
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include "putty.h"
|
|
|
|
static char *null_init(Session *);
|
|
static int null_msg(Session *, SOCKET, Net_Event_Type);
|
|
static void null_send(Session *, char *, int);
|
|
static void loop_send(Session *, char *, int);
|
|
static void hexdump_send(Session *, char *, int);
|
|
static void null_size(Session *);
|
|
static void null_special(Session *, Telnet_Special);
|
|
static char *rawtcp_init(Session *);
|
|
static int rawtcp_msg(Session *, SOCKET, Net_Event_Type);
|
|
|
|
Backend null_backend = {
|
|
null_init, null_msg, null_send, null_size, null_special
|
|
};
|
|
|
|
Backend loop_backend = {
|
|
null_init, null_msg, loop_send, null_size, null_special
|
|
};
|
|
|
|
Backend hexdump_backend = {
|
|
null_init, null_msg, hexdump_send, null_size, null_special
|
|
};
|
|
|
|
Backend rawtcp_backend = {
|
|
rawtcp_init, rawtcp_msg, null_send, null_size, null_special
|
|
};
|
|
|
|
static char *null_init(Session *s) {
|
|
|
|
return NULL;
|
|
}
|
|
|
|
static int null_msg(Session *s, SOCKET sock, Net_Event_Type ne) {
|
|
|
|
return 1;
|
|
}
|
|
|
|
static void null_send(Session *s, char *buf, int len) {
|
|
|
|
}
|
|
|
|
static void loop_send (Session *s, char *buf, int len) {
|
|
|
|
while (len--) {
|
|
int new_head = (s->inbuf_head + 1) & INBUF_MASK;
|
|
int c = (unsigned char) *buf;
|
|
if (new_head != s->inbuf_reap) {
|
|
s->inbuf[s->inbuf_head] = *buf++;
|
|
s->inbuf_head = new_head;
|
|
}
|
|
}
|
|
term_out(s);
|
|
term_update(s);
|
|
}
|
|
|
|
static void hexdump_send(Session *s, char *buf, int len) {
|
|
static char mybuf[10];
|
|
int mylen;
|
|
|
|
while (len--) {
|
|
mylen = sprintf(mybuf, "%02x\015\012", (unsigned char)*buf++);
|
|
loop_send(s, mybuf, mylen);
|
|
}
|
|
}
|
|
|
|
static void null_size(Session *s) {
|
|
|
|
}
|
|
|
|
static void null_special(Session *s, Telnet_Special code) {
|
|
|
|
}
|
|
|
|
struct rawtcp_private {
|
|
SOCKET s;
|
|
};
|
|
|
|
static char *rawtcp_init(Session *sess) {
|
|
struct rawtcp_private *rp;
|
|
|
|
sess->back_priv = smalloc(sizeof(struct rawtcp_private));
|
|
rp = (struct rawtcp_private *)sess->back_priv;
|
|
rp->s = net_open(sess, sess->cfg.host, sess->cfg.port);
|
|
if (rp->s == INVALID_SOCKET)
|
|
fatalbox("Open failed");
|
|
}
|
|
|
|
static int rawtcp_msg(Session *sess, SOCKET sock, Net_Event_Type ne) {
|
|
struct rawtcp_private *rp = (struct rawtcp_private *)sess->back_priv;
|
|
|
|
switch (ne) {
|
|
case NE_NULL:
|
|
break;
|
|
case NE_OPEN:
|
|
break;
|
|
case NE_NOHOST:
|
|
case NE_REFUSED:
|
|
case NE_NOOPEN:
|
|
rp->s = INVALID_SOCKET;
|
|
fatalbox("Open failed");
|
|
break;
|
|
case NE_DATA:
|
|
break;
|
|
case NE_URGENT:
|
|
break;
|
|
case NE_CLOSING:
|
|
/* net_close(rp->s);*/
|
|
break;
|
|
case NE_CLOSED:
|
|
rp->s = INVALID_SOCKET;
|
|
fatalbox("Connection closed");
|
|
break;
|
|
case NE_TIMEOUT:
|
|
case NE_ABORT:
|
|
case NE_DIED:
|
|
fatalbox("Connection died");
|
|
rp->s = INVALID_SOCKET;
|
|
break;
|
|
}
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
* Emacs magic:
|
|
* Local Variables:
|
|
* c-file-style: "simon"
|
|
* End:
|
|
*/
|