update it

This commit is contained in:
Sukchan Lee 2017-04-09 17:14:32 +09:00
parent 704d475655
commit e4e8f30248
6 changed files with 19 additions and 10 deletions

View file

@ -76,3 +76,8 @@ type_list["Nonce"]["decode"] = \
" *nonce = ntohl(*nonce);\n\n"
type_list["Nonce"]["encode"] = \
" target = htonl(*nonce);\n\n"
type_list["Header compression configuration"]["decode"] = \
" header_compression_configuration->max_cid = ntohs(header_compression_configuration->max_cid);\n\n"
type_list["Header compression configuration"]["encode"] = \
" target.max_cid = htons(header_compression_configuration->max_cid);\n\n"