Skip to content

Commit

Permalink
update changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
yayanyang committed Mar 12, 2024
1 parent 8a217d4 commit c90fb25
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Expand Up @@ -8,6 +8,10 @@ This project adheres to [Semantic Versioning](https://semver.org).
Note: In this file, do not use the hard wrap in the middle of a sentence for compatibility with GitHub comment style markdown rendering.
-->

## [0.1.8] - 2024-03-12

- Fixed: some quic bugs.

## [0.1.6] - 2024-03-05

- add utility type **OpenOptions**: a builder for opening files with configurable options.
Expand Down
10 changes: 5 additions & 5 deletions crates/ext/tests/quic_test.rs
Expand Up @@ -139,7 +139,7 @@ async fn test_echo_per_stream() {
.await
.unwrap();

for _ in 0..10000 {
for _ in 0..100 {
let mut stream = client.stream_open(false).await.unwrap();

stream.write_all(b"hello world").await.unwrap();
Expand Down Expand Up @@ -176,7 +176,7 @@ async fn test_connect_server_close() {
}
});

for _ in 0..100 {
for _ in 0..10 {
let client = QuicConnector::new(None, "127.0.0.1:0", raddr, &mut mock_config(false))
.await
.unwrap()
Expand Down Expand Up @@ -228,7 +228,7 @@ async fn test_connect_client_close() {
}
});

for _ in 0..100 {
for _ in 0..10 {
let client = QuicConnector::new(None, "127.0.0.1:0", raddr, &mut mock_config(false))
.await
.unwrap()
Expand Down Expand Up @@ -279,7 +279,7 @@ async fn test_stream_server_close() {
.await
.unwrap();

for _ in 0..100 {
for _ in 0..10 {
let mut stream = client.stream_open(false).await.unwrap();

stream.write_all(b"hello world").await.unwrap();
Expand Down Expand Up @@ -329,7 +329,7 @@ async fn test_stream_server_close_with_fin() {
.await
.unwrap();

for _ in 0..100 {
for _ in 0..10 {
let mut stream = client.stream_open(false).await.unwrap();

stream.write_all(b"hello world").await.unwrap();
Expand Down

0 comments on commit c90fb25

Please sign in to comment.