Jake Wang
Results
2
issues of
Jake Wang
Today I had a problem: quiche_conn_send function panic. At first I thought it was a problem inside the function, but it turns out that the args CONN address passed in...
static uint8_t *gen_cid(uint8_t *cid, size_t cid_len) { int rng = open("/dev/urandom", O_RDONLY); if (rng < 0) { perror("failed to open /dev/urandom"); return NULL; } ssize_t rand_len = read(rng, cid, cid_len);...