mirror of https://github.com/tp4a/teleport
.temp.
parent
379061dbff
commit
e91f057692
|
@ -54,9 +54,9 @@ typedef struct TS_RECORD_HEADER_BASIC {
|
|||
|
||||
typedef struct TS_RECORD_HEADER {
|
||||
TS_RECORD_HEADER_INFO info;
|
||||
ex_u8 _reserve1[64 - ts_record_header_info_size];
|
||||
uint8_t _reserve1[64 - ts_record_header_info_size];
|
||||
TS_RECORD_HEADER_BASIC basic;
|
||||
ex_u8 _reserve2[512 - 64 - ts_record_header_basic_size];
|
||||
uint8_t _reserve2[512 - 64 - ts_record_header_basic_size];
|
||||
}TS_RECORD_HEADER;
|
||||
|
||||
// header部分(header-info + header-basic) = 512B
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
// stdafx.obj will contain the pre-compiled type information
|
||||
|
||||
#include "stdafx.h"
|
||||
#include <vld.h>
|
||||
|
||||
// TODO: reference any additional headers you need in STDAFX.H
|
||||
// and not in this file
|
||||
|
|
|
@ -169,6 +169,8 @@ int main(int argc, char** argv)
|
|||
|
||||
ssh_disconnect(sess);
|
||||
ssh_free(sess);
|
||||
ssh_finalize();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue