|
cryptlib
3.4.1
|
#include "crypt.h"#include "enc_dec/misc_rw.h"#include "session/session.h"#include "session/ssh.h"Go to the source code of this file.
Classes | |
| struct | SSH_CHANNEL_INFO |
Macros | |
| #define | CHANNEL_FLAG_NONE 0x00 /* No channel flag */ |
| #define | CHANNEL_FLAG_ACTIVE 0x01 /* Channel is active */ |
| #define | CHANNEL_FLAG_WRITECLOSED 0x02 /* Write-side of ch.closed */ |
| #define | isNullChannel(channelInfoPtr) ( ( channelInfoPtr )->readChannelNo == UNUSED_CHANNEL_NO ) |
| #define | isActiveChannel(channelInfoPtr) ( channelInfoPtr->flags & CHANNEL_FLAG_ACTIVE ) |
| #define | SSH_MAX_CHANNELS 1 |
| #define CHANNEL_FLAG_ACTIVE 0x01 /* Channel is active */ |
Definition at line 23 of file ssh2_chn.c.
| #define CHANNEL_FLAG_NONE 0x00 /* No channel flag */ |
Definition at line 22 of file ssh2_chn.c.
| #define CHANNEL_FLAG_WRITECLOSED 0x02 /* Write-side of ch.closed */ |
Definition at line 24 of file ssh2_chn.c.
| #define isActiveChannel | ( | channelInfoPtr | ) | ( channelInfoPtr->flags & CHANNEL_FLAG_ACTIVE ) |
Definition at line 71 of file ssh2_chn.c.
| #define isNullChannel | ( | channelInfoPtr | ) | ( ( channelInfoPtr )->readChannelNo == UNUSED_CHANNEL_NO ) |
Definition at line 69 of file ssh2_chn.c.
| #define SSH_MAX_CHANNELS 1 |
Definition at line 79 of file ssh2_chn.c.
1.8.2