adcen0107

Results 10 issues of adcen0107

Hi, how to start this project, please tell me some detail, thank you!

### Before request a new feature - [X] I have searched the [issues](https://github.com/alibaba/xquic/issues) of this repository and believe that this is not a duplicate. ### Describe the feature you'd like...

:bulb: enhancement
:star_struck: someone working on it

Hi guys I am following your instruction, I got a problem from make -j$(nproc) check from ngtcp2. Here is executing configure show: configure: summary of build options: Package version: 0.1.0-DEV...

Hi guys I got executable file client and server, then I how to send unencrypted message between client and server ? please give me some advices thank you!

### What happened? 1、xquic stream的大小发送端会限制(默认为32M),而接收端并不会限制; 接收端收流处理函数xqc_process_stream_frame,将stream_frame插入stream后,执行receiver flow control,仅是简单更新流统计信息 /* receiver flow control */ if (stream->stream_max_recv_offset < stream_frame->data_offset + stream_frame->data_length) { conn->conn_flow_ctl.fc_data_recved += stream_frame->data_offset + stream_frame->data_length - stream->stream_max_recv_offset; stream->stream_max_recv_offset = stream_frame->data_offset...

### What happened? 在xqc_cubic.c的xqc_cubic_update函数实现中,line 66 ~ 70: /* * t = elapsed_time * 1024 / 1000000, convert microseconds to milliseconds, * multiply by 1024 in order to be able to...

### What happened? test_client.c和test_server.c的usage()实现中,参数说明不匹配main()中使用的参数。 比如,main()中有关于multipath相关的参数:M,R,i,而usage()提示内容则没有包含。 ### Steps To Reproduce 1、test_client.c的main()的相关代码如下: case 'M': printf("option enable multi-path: %s\n", optarg); g_enable_multipath = atoi(optarg); break; case 'R': printf("option enable reinjection: %s\n", "on"); g_enable_reinjection =...

:book: documentation

### What happened? 1、xqc_h3_request_send_body 发送http数据,最终进入如下函数: https://github.com/alibaba/xquic/blob/00f622885d91e02c879f8531bc04af7a584faed4/src/http3/xqc_h3_stream.c#L218 /* write DATA frame */ ret = xqc_h3_frm_write_data(&h3s->send_buf, data + write, size, flag); if (ret != XQC_OK) { xqc_log(h3s->log, XQC_LOG_ERROR, "|write DATA frame error|%d|stream_id:%ui|fin:%d|",...

Hi, I have finished a performance on my centos7 equipment about pcc, and I found that pcc don't care about the network link capacity or other envirement always to send...