Browse Subversion Repository
Diff of /branches/ssh_chacha20poly1305/ttssh2/ttxssh/ssh.h
Parent Directory
| Revision Log
| Patch
| 37 |
#include "zlib.h" |
#include "zlib.h" |
| 38 |
#include <openssl/evp.h> |
#include <openssl/evp.h> |
| 39 |
|
|
| 40 |
|
#include "buffer.h" |
| 41 |
|
|
| 42 |
#define DEBUG_PRINT_TO_FILE(base, msg, len) { \ |
#define DEBUG_PRINT_TO_FILE(base, msg, len) { \ |
| 43 |
static int count = 0; \ |
static int count = 0; \ |
| 392 |
TOLOCAL, FROMREMOTE, |
TOLOCAL, FROMREMOTE, |
| 393 |
}; |
}; |
| 394 |
|
|
| 395 |
|
#define SSH1_AGENT_CHANNEL_ID 0x10000000 |
| 396 |
|
typedef struct agent_channel { |
| 397 |
|
int local_id; |
| 398 |
|
int remote_id; |
| 399 |
|
buffer_t *agent_msg; |
| 400 |
|
int agent_request_len; |
| 401 |
|
} agent_channel_t; |
| 402 |
|
|
| 403 |
/* The packet handler returns TRUE to keep the handler in place, |
/* The packet handler returns TRUE to keep the handler in place, |
| 404 |
FALSE to remove the handler. */ |
FALSE to remove the handler. */ |
| 405 |
typedef BOOL (* SSHPacketHandler)(PTInstVar pvar); |
typedef BOOL (* SSHPacketHandler)(PTInstVar pvar); |
|
|
Legend:
| Removed from v.3173 |
|
| changed lines |
| |
Added in v.3176 |
|
|
| |