Skip to content
Snippets Groups Projects
Commit 193945cb authored by Tatsuhiro Tsujikawa's avatar Tatsuhiro Tsujikawa
Browse files

Cleanup

parent 8fe0893b
Branches
No related merge requests found
...@@ -118,7 +118,7 @@ int main() { ...@@ -118,7 +118,7 @@ int main() {
!CU_add_test(pSuite, "pkt_encode_new_token_frame", !CU_add_test(pSuite, "pkt_encode_new_token_frame",
test_ngtcp2_pkt_encode_new_token_frame) || test_ngtcp2_pkt_encode_new_token_frame) ||
!CU_add_test(pSuite, "pkt_encode_retire_connection_id", !CU_add_test(pSuite, "pkt_encode_retire_connection_id",
test_ngtcp2_pkt_encode_retire_connection_id) || test_ngtcp2_pkt_encode_retire_connection_id_frame) ||
!CU_add_test(pSuite, "pkt_encode_handshake_done", !CU_add_test(pSuite, "pkt_encode_handshake_done",
test_ngtcp2_pkt_encode_handshake_done_frame) || test_ngtcp2_pkt_encode_handshake_done_frame) ||
!CU_add_test(pSuite, "pkt_adjust_pkt_num", !CU_add_test(pSuite, "pkt_adjust_pkt_num",
......
...@@ -1084,7 +1084,7 @@ void test_ngtcp2_pkt_encode_new_token_frame(void) { ...@@ -1084,7 +1084,7 @@ void test_ngtcp2_pkt_encode_new_token_frame(void) {
fr.new_token.tokenlen)); fr.new_token.tokenlen));
} }
void test_ngtcp2_pkt_encode_retire_connection_id(void) { void test_ngtcp2_pkt_encode_retire_connection_id_frame(void) {
uint8_t buf[256]; uint8_t buf[256];
ngtcp2_frame fr, nfr; ngtcp2_frame fr, nfr;
ngtcp2_ssize rv; ngtcp2_ssize rv;
......
...@@ -54,7 +54,7 @@ void test_ngtcp2_pkt_encode_path_challenge_frame(void); ...@@ -54,7 +54,7 @@ void test_ngtcp2_pkt_encode_path_challenge_frame(void);
void test_ngtcp2_pkt_encode_path_response_frame(void); void test_ngtcp2_pkt_encode_path_response_frame(void);
void test_ngtcp2_pkt_encode_crypto_frame(void); void test_ngtcp2_pkt_encode_crypto_frame(void);
void test_ngtcp2_pkt_encode_new_token_frame(void); void test_ngtcp2_pkt_encode_new_token_frame(void);
void test_ngtcp2_pkt_encode_retire_connection_id(void); void test_ngtcp2_pkt_encode_retire_connection_id_frame(void);
void test_ngtcp2_pkt_encode_handshake_done_frame(void); void test_ngtcp2_pkt_encode_handshake_done_frame(void);
void test_ngtcp2_pkt_adjust_pkt_num(void); void test_ngtcp2_pkt_adjust_pkt_num(void);
void test_ngtcp2_pkt_validate_ack(void); void test_ngtcp2_pkt_validate_ack(void);
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment