123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705 |
- #include <stdio.h>
- #include <stdlib.h>
- #ifndef macintosh
- #include <winsock.h>
- #endif
- #include "putty.h"
- #ifndef FALSE
- #define FALSE 0
- #endif
- #ifndef TRUE
- #define TRUE 1
- #endif
- #include "ssh.h"
- /* Coroutine mechanics for the sillier bits of the code */
- #define crBegin1(l) (l) = 0;
- #define crBegin2(l) switch(l) { case 0:;
- #define crBegin(l) crBegin1(l); crBegin2(l);
- #define crFinish(l,z) } (l) = 0; return (l)
- #define foolemacs {
- #define crFinishV(l) } (l) = 0; return
- #define crReturn(l,z) \
- do {\
- (l)=__LINE__; return (z); case __LINE__:;\
- } while (0)
- #define crReturnV(l) \
- do {\
- (l)=__LINE__; return; case __LINE__:;\
- } while (0)
- #define crStop(l,z) do{ (l) = 0; return (z); }while(0)
- #define crStopV(l) do{ (l) = 0; return; }while(0)
- #ifndef FALSE
- #define FALSE 0
- #endif
- #ifndef TRUE
- #define TRUE 1
- #endif
- struct Packet {
- long length;
- int type;
- unsigned long crc;
- unsigned char *data;
- unsigned char *body;
- long maxlen;
- };
- struct ssh_private {
- SOCKET s;
- unsigned char session_key[32];
- struct ssh_cipher *cipher;
- char *savedhost;
- enum {
- SSH_STATE_BEFORE_SIZE,
- SSH_STATE_INTERMED,
- SSH_STATE_SESSION,
- SSH_STATE_CLOSED
- } ssh_state;
- int size_needed;
- #ifdef FWHACK
- char *FWhost;
- int FWport;
- #endif
- struct Packet pktin;
- struct Packet pktout;
- /* State for ssh_gotdata coroutine */
- int gd_line;
- long len, biglen, to_read;
- unsigned char *p;
- int i, pad;
- int chunk;
- char *sversion;
- size_t sversion_space, sversion_len;
- /* State for ssh_protocol coroutine */
- int pr_line;
- };
- static void s_write (Session *sess, unsigned char *buf, int len) {
- struct ssh_private *sp = (struct ssh_private*)sess->back_priv;
- while (len > 0) {
- int i = net_send (sp->s, buf, len, 0);
- if (i > 0)
- len -= i, buf += i;
- }
- }
- static int s_read (Session *sess, unsigned char *buf, int len) {
- struct ssh_private *sp = (struct ssh_private*)sess->back_priv;
- int ret = 0;
- while (len > 0) {
- int i = net_recv (sp->s, buf, len, 0);
- if (i > 0)
- len -= i, buf += i, ret += i;
- else
- return i;
- }
- return ret;
- }
- static void c_write (Session *sess, char *buf, int len) {
- while (len--) {
- int new_head = (sess->inbuf_head + 1) & INBUF_MASK;
- if (new_head != sess->inbuf_reap) {
- sess->inbuf[sess->inbuf_head] = *buf++;
- sess->inbuf_head = new_head;
- }
- }
- }
- static void ssh_protocol(Session *,unsigned char *in, int inlen, int ispkt);
- static void ssh_size(void);
- static void ssh_gotdata(Session *sess, unsigned char *data, int datalen) {
- struct ssh_private *sp = (struct ssh_private *)sess->back_priv;
- unsigned char *eol;
- size_t fraglen = datalen;
- static char vstring[] = "SSH-1.5-PuTTY\n";
- crBegin(sp->gd_line);
- #ifdef FWHACK
- /* Should wait for "SSH-" */
- #endif
- sp->sversion = smalloc(16); /* enough for "SSH-1.5-1.2.27\n" */
- sp->sversion_space = 16;
- sp->sversion_len = 0;
- do {
- while (datalen == 0)
- crReturnV(sp->gd_line);
- eol = memchr(data, '\n', datalen);
- if (eol != NULL)
- fraglen = eol + 1 - data; /* include \n */
- if (sp->sversion_len + fraglen > sp->sversion_space) {
- /* FIXME Sanity-check length */
- srealloc(sp->sversion, sp->sversion_len + fraglen);
- sp->sversion_space = sp->sversion_len + fraglen;
- }
- memcpy(sp->sversion + sp->sversion_len, data, fraglen);
- data += fraglen; datalen -= fraglen;
- } while (eol == NULL);
- sp->sversion[sp->sversion_len - 1] = '\0';
- if (sp->sversion_len < 4 || memcmp(sp->sversion, "SSH-", 4) != 0)
- /* XXX explode! */;
- /*
- * We ignore the rest of the banner on the grounds that we only
- * speak SSH 1.5 anyway. If the server can't, that's its problem.
- */
- s_write(sess, (unsigned char *)vstring, strlen(vstring));
- /* End of do_ssh_init */
- while (1) {
- for (sp->i = sp->len = 0; sp->i < 4; sp->i++) {
- while (datalen == 0)
- crReturnV(sp->gd_line);
- sp->len = (sp->len << 8) + *data;
- data++, datalen--;
- }
- #ifdef FWHACK
- if (sp->len == 0x52656d6f) { /* "Remo"te server has closed ... */
- sp->len = 0x300; /* big enough to carry to end */
- }
- #endif
- sp->pad = 8 - (sp->len%8);
- sp->biglen = sp->len + sp->pad;
- sp->len -= 5; /* type and CRC */
- sp->pktin.length = sp->len;
- if (sp->pktin.maxlen < sp->biglen) {
- sp->pktin.maxlen = sp->biglen;
- sp->pktin.data = (sp->pktin.data == NULL ? smalloc(sp->biglen) :
- srealloc(sp->pktin.data, sp->biglen));
- }
- sp->p = sp->pktin.data, sp->to_read = sp->biglen;
- while (sp->to_read > 0) {
- sp->chunk = sp->to_read;
- while (datalen == 0)
- crReturnV(sp->gd_line);
- if (sp->chunk > datalen)
- sp->chunk = datalen;
- memcpy(sp->p, data, sp->chunk);
- data += sp->chunk;
- datalen -= sp->chunk;
- sp->p += sp->chunk;
- sp->to_read -= sp->chunk;
- }
- if (sp->cipher)
- sp->cipher->decrypt(sp->pktin.data, sp->biglen);
- sp->pktin.type = sp->pktin.data[sp->pad];
- sp->pktin.body = sp->pktin.data+sp->pad+1;
- if (sp->pktin.type == SSH_MSG_DEBUG) { /* SSH_MSG_DEBUG */
- /* FIXME: log it */
- } else
- ssh_protocol(sess, NULL, 0, 1);
- }
- crFinishV(sp->gd_line);
- }
- static void s_wrpkt_start(Session *sess, int type, int len) {
- struct ssh_private *sp = (struct ssh_private *)sess->back_priv;
- int pad, biglen;
- len += 5; /* type and CRC */
- pad = 8 - (len%8);
- biglen = len + pad;
- sp->pktout.length = len-5;
- if (sp->pktout.maxlen < biglen) {
- sp->pktout.maxlen = biglen;
- sp->pktout.data = (sp->pktout.data == NULL ? smalloc(biglen+4) :
- srealloc(sp->pktout.data, biglen+4));
- }
- sp->pktout.type = type;
- sp->pktout.body = sp->pktout.data+4+pad+1;
- }
- static void s_wrpkt(Session *sess) {
- struct ssh_private *sp = (struct ssh_private *)sess->back_priv;
- int pad, len, biglen, i;
- unsigned long crc;
- len = sp->pktout.length + 5; /* type and CRC */
- pad = 8 - (len%8);
- biglen = len + pad;
- sp->pktout.body[-1] = sp->pktout.type;
- for (i=0; i<pad; i++)
- sp->pktout.data[i+4] = random_byte();
- crc = crc32(sp->pktout.data+4, biglen-4);
- sp->pktout.data[biglen+0] = (unsigned char) ((crc >> 24) & 0xFF);
- sp->pktout.data[biglen+1] = (unsigned char) ((crc >> 16) & 0xFF);
- sp->pktout.data[biglen+2] = (unsigned char) ((crc >> 8) & 0xFF);
- sp->pktout.data[biglen+3] = (unsigned char) (crc & 0xFF);
- sp->pktout.data[0] = (len >> 24) & 0xFF;
- sp->pktout.data[1] = (len >> 16) & 0xFF;
- sp->pktout.data[2] = (len >> 8) & 0xFF;
- sp->pktout.data[3] = len & 0xFF;
- if (sp->cipher)
- sp->cipher->encrypt(sp->pktout.data+4, biglen);
- s_write(sess, sp->pktout.data, biglen+4);
- }
- static int do_ssh_init(Session *sess) {
- }
- static void ssh_protocol(Session *sess, unsigned char *in, int inlen,
- int ispkt) {
- struct ssh_private *sp = (struct ssh_private *)sess->back_priv;
- int i, j, len;
- unsigned char session_id[16];
- unsigned char *rsabuf, *keystr1, *keystr2;
- unsigned char cookie[8];
- struct RSAKey servkey, hostkey;
- struct MD5Context md5c;
- unsigned long supported_ciphers_mask;
- int cipher_type;
- extern struct ssh_cipher ssh_3des;
- extern struct ssh_cipher ssh_blowfish;
- crBegin(sp->pr_line);
- random_init();
- while (!ispkt)
- crReturnV(sp->pr_line);
- if (sp->pktin.type != SSH_SMSG_PUBLIC_KEY)
- fatalbox("Public key packet not received");
- memcpy(cookie, sp->pktin.body, 8);
- MD5Init(&md5c);
- i = makekey(sp->pktin.body+8, &servkey, &keystr1);
- j = makekey(sp->pktin.body+8+i, &hostkey, &keystr2);
- supported_ciphers_mask = (sp->pktin.body[12+i+j] << 24) |
- (sp->pktin.body[13+i+j] << 16) |
- (sp->pktin.body[14+i+j] << 8) |
- (sp->pktin.body[15+i+j]);
- MD5Update(&md5c, keystr2, hostkey.bytes);
- MD5Update(&md5c, keystr1, servkey.bytes);
- MD5Update(&md5c, sp->pktin.body, 8);
- MD5Final(session_id, &md5c);
- for (i=0; i<32; i++)
- session_key[i] = random_byte();
- len = (hostkey.bytes > servkey.bytes ? hostkey.bytes : servkey.bytes);
- rsabuf = malloc(len);
- if (!rsabuf)
- fatalbox("Out of memory");
- verify_ssh_host_key(savedhost, &hostkey);
- for (i=0; i<32; i++) {
- rsabuf[i] = session_key[i];
- if (i < 16)
- rsabuf[i] ^= session_id[i];
- }
- if (hostkey.bytes > servkey.bytes) {
- rsaencrypt(rsabuf, 32, &servkey);
- rsaencrypt(rsabuf, servkey.bytes, &hostkey);
- } else {
- rsaencrypt(rsabuf, 32, &hostkey);
- rsaencrypt(rsabuf, hostkey.bytes, &servkey);
- }
- cipher_type = cfg.cipher == CIPHER_BLOWFISH ? SSH_CIPHER_BLOWFISH :
- SSH_CIPHER_3DES;
- if ((supported_ciphers_mask & (1 << cipher_type)) == 0) {
- c_write("Selected cipher not supported, falling back to 3DES\r\n", 53);
- cipher_type = SSH_CIPHER_3DES;
- }
- s_wrpkt_start(SSH_CMSG_SESSION_KEY, len+15);
- sp->pktout.body[0] = cipher_type;
- memcpy(sp->pktout.body+1, cookie, 8);
- sp->pktout.body[9] = (len*8) >> 8;
- sp->pktout.body[10] = (len*8) & 0xFF;
- memcpy(sp->pktout.body+11, rsabuf, len);
- sp->pktout.body[len+11] = sp->pktout.body[len+12] = 0; /* protocol flags */
- sp->pktout.body[len+13] = sp->pktout.body[len+14] = 0;
- s_wrpkt();
- free(rsabuf);
- cipher = cipher_type == SSH_CIPHER_BLOWFISH ? &ssh_blowfish :
- &ssh_3des;
- cipher->sesskey(session_key);
- do { crReturnV(sp->pr_line); } while (!ispkt);
- if (sp->pktin.type != SSH_SMSG_SUCCESS)
- fatalbox("Encryption not successfully enabled");
- fflush(stdout);
- {
- static char username[100];
- static int pos = 0;
- static char c;
- if (!*cfg.username) {
- c_write("login as: ", 10);
- while (pos >= 0) {
- do { crReturnV(sp->pr_line); } while (ispkt);
- while (inlen--) switch (c = *in++) {
- case 10: case 13:
- username[pos] = 0;
- pos = -1;
- break;
- case 8: case 127:
- if (pos > 0) {
- c_write("\b \b", 3);
- pos--;
- }
- break;
- case 21: case 27:
- while (pos > 0) {
- c_write("\b \b", 3);
- pos--;
- }
- break;
- case 3: case 4:
- random_save_seed();
- exit(0);
- break;
- default:
- if (c >= ' ' && c <= '~' && pos < 40) {
- username[pos++] = c;
- c_write(&c, 1);
- }
- break;
- }
- }
- c_write("\r\n", 2);
- username[strcspn(username, "\n\r")] = '\0';
- } else {
- char stuff[200];
- strncpy(username, cfg.username, 99);
- username[99] = '\0';
- sprintf(stuff, "Sent username \"%s\".\r\n", username);
- c_write(stuff, strlen(stuff));
- }
- s_wrpkt_start(SSH_CMSG_USER, 4+strlen(username));
- sp->pktout.body[0] = sp->pktout.body[1] = sp->pktout.body[2] = 0;
- sp->pktout.body[3] = strlen(username);
- memcpy(sp->pktout.body+4, username, strlen(username));
- s_wrpkt();
- }
- do { crReturnV(sp->pr_line); } while (!ispkt);
- while (sp->pktin.type == SSH_SMSG_FAILURE) {
- static char password[100];
- static int pos;
- static char c;
- c_write("password: ", 10);
- pos = 0;
- while (pos >= 0) {
- do { crReturnV(sp->pr_line); } while (ispkt);
- while (inlen--) switch (c = *in++) {
- case 10: case 13:
- password[pos] = 0;
- pos = -1;
- break;
- case 8: case 127:
- if (pos > 0)
- pos--;
- break;
- case 21: case 27:
- pos = 0;
- break;
- case 3: case 4:
- random_save_seed();
- exit(0);
- break;
- default:
- if (c >= ' ' && c <= '~' && pos < 40)
- password[pos++] = c;
- break;
- }
- }
- c_write("\r\n", 2);
- s_wrpkt_start(SSH_CMSG_AUTH_PASSWORD, 4+strlen(password));
- sp->pktout.body[0] = sp->pktout.body[1] = sp->pktout.body[2] = 0;
- sp->pktout.body[3] = strlen(password);
- memcpy(sp->pktout.body+4, password, strlen(password));
- s_wrpkt();
- memset(password, 0, strlen(password));
- do { crReturnV(sp->pr_line); } while (!ispkt);
- if (sp->pktin.type == SSH_SMSG_FAILURE) {
- c_write("Access denied\r\n", 15);
- } else if (sp->pktin.type != SSH_SMSG_SUCCESS) {
- fatalbox("Strange packet received, type %d", sp->pktin.type);
- }
- }
- if (!cfg.nopty) {
- i = strlen(cfg.termtype);
- s_wrpkt_start(SSH_CMSG_REQUEST_PTY, i+5*4+1);
- sp->pktout.body[0] = (i >> 24) & 0xFF;
- sp->pktout.body[1] = (i >> 16) & 0xFF;
- sp->pktout.body[2] = (i >> 8) & 0xFF;
- sp->pktout.body[3] = i & 0xFF;
- memcpy(sp->pktout.body+4, cfg.termtype, i);
- i += 4;
- sp->pktout.body[i++] = (rows >> 24) & 0xFF;
- sp->pktout.body[i++] = (rows >> 16) & 0xFF;
- sp->pktout.body[i++] = (rows >> 8) & 0xFF;
- sp->pktout.body[i++] = rows & 0xFF;
- sp->pktout.body[i++] = (cols >> 24) & 0xFF;
- sp->pktout.body[i++] = (cols >> 16) & 0xFF;
- sp->pktout.body[i++] = (cols >> 8) & 0xFF;
- sp->pktout.body[i++] = cols & 0xFF;
- memset(sp->pktout.body+i, 0, 9); /* 0 pixwidth, 0 pixheight, 0.b endofopt */
- s_wrpkt();
- ssh_state = SSH_STATE_INTERMED;
- do { crReturnV(sp->pr_line); } while (!ispkt);
- if (sp->pktin.type != SSH_SMSG_SUCCESS
- && sp->pktin.type != SSH_SMSG_FAILURE) {
- fatalbox("Protocol confusion");
- } else if (sp->pktin.type == SSH_SMSG_FAILURE) {
- c_write("Server refused to allocate pty\r\n", 32);
- }
- }
- s_wrpkt_start(SSH_CMSG_EXEC_SHELL, 0);
- s_wrpkt();
- ssh_state = SSH_STATE_SESSION;
- if (size_needed)
- ssh_size();
- while (1) {
- crReturnV(sp->pr_line);
- if (ispkt) {
- if (sp->pktin.type == SSH_SMSG_STDOUT_DATA ||
- sp->pktin.type == SSH_SMSG_STDERR_DATA) {
- long len = 0;
- for (i = 0; i < 4; i++)
- len = (len << 8) + sp->pktin.body[i];
- c_write(sp->pktin.body+4, len);
- } else if (sp->pktin.type == SSH_MSG_DISCONNECT) {
- /* SSH_MSG_DISCONNECT */
- ssh_state = SSH_STATE_CLOSED;
- } else if (sp->pktin.type == SSH_SMSG_SUCCESS) {
- /* SSH_MSG_SUCCESS: may be from EXEC_SHELL on some servers */
- } else if (sp->pktin.type == SSH_SMSG_FAILURE) {
- /* SSH_MSG_FAILURE: may be from EXEC_SHELL on some servers
- * if no pty is available or in other odd cases. Ignore */
- } else if (sp->pktin.type == SSH_SMSG_EXITSTATUS) {
- /* EXITSTATUS */
- s_wrpkt_start(SSH_CMSG_EXIT_CONFIRMATION, 0);
- s_wrpkt();
- } else {
- fatalbox("Strange packet received: type %d", sp->pktin.type);
- }
- } else {
- s_wrpkt_start(SSH_CMSG_STDIN_DATA, 4+inlen);
- sp->pktout.body[0] = (inlen >> 24) & 0xFF;
- sp->pktout.body[1] = (inlen >> 16) & 0xFF;
- sp->pktout.body[2] = (inlen >> 8) & 0xFF;
- sp->pktout.body[3] = inlen & 0xFF;
- memcpy(sp->pktout.body+4, in, inlen);
- s_wrpkt();
- }
- }
- crFinishV;
- }
- /*
- * Called to set up the connection. Will arrange for WM_NETEVENT
- * messages to be passed to the specified window, whose window
- * procedure should then call telnet_msg().
- *
- * Returns an error message, or NULL on success.
- *
- * Also places the canonical host name into `realhost'.
- */
- static char *ssh_init(Session *sess) {
- struct ssh_private *sp;
- char *host = sess->cfg.host;
- int port = sess->cfg.port;
- sess->back_priv = smalloc(sizeof(struct ssh_private));
- sp = (struct ssh_private *)sess->back_priv;
- memset(*sp, 0, sizeof(*sp));
- sp->s = INVALID_SOCKET;
- sp->ssh_state = SSH_STATE_BEFORE_SIZE;
- sp->savedhost = smalloc(1+strlen(host));
- strcpy(sp->savedhost, host);
- #ifdef FWHACK
- sp->FWhost = host;
- sp->FWport = port;
- host = FWSTR;
- port = 23;
- #endif
- if (port < 0)
- port = 22; /* default ssh port */
- sp->s = net_open(sess, host, port);
- return NULL;
- }
- static void ssh_opened(Session *sess) {
- struct ssh_private *sp = (struct ssh_private *)sess->back_priv;
- #ifdef FWHACK
- send(sp->s, "connect ", 8, 0);
- send(sp->s, FWhost, strlen(FWhost), 0);
- {
- char buf[20];
- sprintf(buf, " %d\n", FWport);
- send (s, buf, strlen(buf), 0);
- }
- #endif
- if (!do_ssh_init())
- return "Protocol initialisation error";
- if (WSAAsyncSelect (s, hwnd, WM_NETEVENT, FD_READ | FD_CLOSE) == SOCKET_ERROR)
- switch (WSAGetLastError()) {
- case WSAENETDOWN: return "Network is down";
- default: return "WSAAsyncSelect(): unknown error";
- }
- return NULL;
- }
- /*
- * Process a WM_NETEVENT message. Will return 0 if the connection
- * has closed, or <0 for a socket error.
- */
- static int ssh_msg (Session *sess, SOCKET sock, Net_Event_Type ne) {
- struct ssh_private *sp = (struct ssh_private *)sess->back_priv;
- int ret;
- char buf[256];
- if (s == INVALID_SOCKET) /* how the hell did we get here?! */
- return -5000;
- switch (ne) {
- case NE_OPEN:
- ssh_opened(sess);
- return 1;
- case NE_DATA:
- ret = net_recv(sock, buf, sizeof(buf), 0);
- if (ret < 0) /* any _other_ error */
- return -1;
- if (ret == 0) {
- sp->s = INVALID_SOCKET;
- return 0; /* can't happen, in theory */
- }
- ssh_gotdata(sess, buf, ret);
- return 1;
- case NE_CLOSING:
- sp->s = INVALID_SOCKET;
- sp->ssh_state = SSH_STATE_CLOSED;
- return 0;
- case NE_NOHOST:
- fatalbox("Host not found");
- case NE_REFUSED:
- fatalbox("Connection refused");
- case NE_NOOPEN:
- fatalbox("Unable to open connection");
- case NE_TIMEOUT:
- fatalbox("Connection timed out");
- case NE_ABORT:
- fatalbox("Connection reset by peer");
- case NE_DIED:
- fatalbox("Connection died");
- }
- return 1; /* shouldn't happen, but WTF */
- }
- /*
- * Called to send data down the Telnet connection.
- */
- static void ssh_send(Session *sess, char *buf, int len) {
- if (s == INVALID_SOCKET)
- return;
- ssh_protocol(sess, buf, len, 0);
- }
- /*
- * Called to set the size of the window from Telnet's POV.
- */
- static void ssh_size(Session *sess) {
- struct ssh_private *sp = (struct ssh_private *sp)sess->back_priv;
- switch (sp->ssh_state) {
- case SSH_STATE_BEFORE_SIZE:
- case SSH_STATE_CLOSED:
- break; /* do nothing */
- case SSH_STATE_INTERMED:
- sp->size_needed = TRUE; /* buffer for later */
- break;
- case SSH_STATE_SESSION:
- if (!sess->cfg.nopty) {
- s_wrpkt_start(SSH_CMSG_WINDOW_SIZE, 16);
- sp->pktout.body[0] = (rows >> 24) & 0xFF;
- sp->pktout.body[1] = (rows >> 16) & 0xFF;
- sp->pktout.body[2] = (rows >> 8) & 0xFF;
- sp->pktout.body[3] = rows & 0xFF;
- sp->pktout.body[4] = (cols >> 24) & 0xFF;
- sp->pktout.body[5] = (cols >> 16) & 0xFF;
- sp->pktout.body[6] = (cols >> 8) & 0xFF;
- sp->pktout.body[7] = cols & 0xFF;
- memset(sp->pktout.body+8, 0, 8);
- s_wrpkt();
- }
- }
- }
- /*
- * (Send Telnet special codes)
- */
- static void ssh_special (Telnet_Special code) {
- /* do nothing */
- }
- Backend ssh_backend = {
- ssh_init,
- ssh_msg,
- ssh_send,
- ssh_size,
- ssh_special
- };
|