|
New Features and Updates for APPX RouterLast Update: 11/17/01
Appendix C - ENCRYPTSTATUS Control String
=========================================
#define ENCRYPTSTATUSID (34) //09/09/01
/*
*
* ENCRYPTSTATUS
*
* This *sendrcv* control return the current encryption parameters
* for the ATB link level encryption.
* Not supported by all drivers.
*
* 09/09/01
*
*/
typedef struct tagENCRYPTSTATUS
{
char ID; /* block id (ENCRYPTSTATUSID) */
char encryption_active; // Non-zero = true
ENCR_MODE mode;
char preference;
char SS_exchanged; // Non-zero = true
char ID_exchanged; // Non-zero = true
char SSID_exchanged; // Non-zero = true
char strong_encryption; // Non-zero = true
unsigned char session_id[32];
unsigned char id[32];
pENCR_EXIT_RTN encrexit;
unsigned long IPaddress;
char fill[64];
} ENCRYPTSTATUS;
|