增加流标签

This commit is contained in:
崔一鸣
2019-05-21 17:14:07 +08:00
parent 1e58549e8a
commit 85aee8ba55
6 changed files with 97 additions and 26 deletions

View File

@@ -468,8 +468,8 @@ struct ssl_chello* ssl_chello_parse(const unsigned char* buff, size_t buff_len,
*result = CHELLO_PARSE_INVALID_FORMAT;
return _chello;
}
enum chello_parse_result rtn = parse_extensions(buff + pos, len, _chello);
*result = rtn;
enum chello_parse_result ret = parse_extensions(buff + pos, len, _chello);
*result = ret;
return _chello;
}
}