pull/236/head
Apex Liu 2019-11-22 02:16:00 +08:00
parent 379061dbff
commit e91f057692
3 changed files with 5 additions and 2 deletions

View File

@ -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

View File

@ -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

View File

@ -169,6 +169,8 @@ int main(int argc, char** argv)
ssh_disconnect(sess);
ssh_free(sess);
ssh_finalize();
return 0;
}