Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
picoquic
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Requirements
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Kashyap Thimmaraju
picoquic
Commits
04c3a78b
Commit
04c3a78b
authored
6 years ago
by
huitema
Browse files
Options
Downloads
Patches
Plain Diff
Add trace data and fix newreno bug
parent
88c29fab
No related merge requests found
Changes
3
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
picoquic/logger.c
+15
-0
15 additions, 0 deletions
picoquic/logger.c
picoquic/newreno.c
+3
-3
3 additions, 3 deletions
picoquic/newreno.c
picoquictest/packet_trace_ref.txt
+1137
-1135
1137 additions, 1135 deletions
picoquictest/packet_trace_ref.txt
with
1155 additions
and
1138 deletions
picoquic/logger.c
+
15
−
0
View file @
04c3a78b
...
...
@@ -1765,6 +1765,14 @@ void picoquic_open_cc_dump(picoquic_cnx_t * cnx)
ret
|=
fprintf
(
cnx
->
cc_log
,
"highest ack, "
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"high ack time, "
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"last time ack, "
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"cwin, "
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"SRTT, "
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"RTT min, "
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"Send MTU, "
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"pacing packet time(us), "
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"nb retrans, "
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"nb spurious, "
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"
\n
"
)
<=
0
;
if
(
ret
!=
0
)
{
...
...
@@ -1804,6 +1812,13 @@ void picoquic_cc_dump(picoquic_cnx_t * cnx, uint64_t current_time)
ret
|=
fprintf
(
cnx
->
cc_log
,
"%lld, "
,
(
long
long
)((
int64_t
)
cnx
->
pkt_ctx
[
picoquic_packet_context_application
].
highest_acknowledged
))
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"%llu, "
,
(
unsigned
long
long
)
cnx
->
pkt_ctx
[
picoquic_packet_context_application
].
highest_acknowledged_time
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"%llu, "
,
(
unsigned
long
long
)
cnx
->
pkt_ctx
[
picoquic_packet_context_application
].
latest_time_acknowledged
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"%llu, "
,
(
unsigned
long
long
)
cnx
->
path
[
0
]
->
cwin
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"%llu, "
,
(
unsigned
long
long
)
cnx
->
path
[
0
]
->
smoothed_rtt
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"%llu, "
,
(
unsigned
long
long
)
cnx
->
path
[
0
]
->
rtt_min
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"%u, "
,
cnx
->
path
[
0
]
->
send_mtu
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"%llu, "
,
(
unsigned
long
long
)
cnx
->
path
[
0
]
->
pacing_packet_time_microsec
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"%llu, "
,
(
unsigned
long
long
)
cnx
->
nb_retransmission_total
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"%llu, "
,
(
unsigned
long
long
)
cnx
->
nb_spurious
)
<=
0
;
ret
|=
fprintf
(
cnx
->
cc_log
,
"
\n
"
)
<=
0
;
if
(
ret
!=
0
)
{
...
...
This diff is collapsed.
Click to expand it.
picoquic/newreno.c
+
3
−
3
View file @
04c3a78b
...
...
@@ -158,9 +158,9 @@ void picoquic_newreno_notify(picoquic_path_t* path_x,
case
picoquic_newreno_alg_congestion_avoidance
:
switch
(
notification
)
{
case
picoquic_congestion_notification_acknowledgement
:
{
uint64_t
complete_
ack
=
nb_bytes_acknowledged
+
nr_state
->
residual_ack
;
nr_state
->
residual_ack
=
complete_
ack
%
path_x
->
cwin
;
path_x
->
cwin
+=
complete_
ack
/
path_x
->
cwin
;
uint64_t
complete_
delta
=
nb_bytes_acknowledged
*
path_x
->
send_mtu
+
nr_state
->
residual_ack
;
nr_state
->
residual_ack
=
complete_
delta
%
path_x
->
cwin
;
path_x
->
cwin
+=
complete_
delta
/
path_x
->
cwin
;
break
;
}
case
picoquic_congestion_notification_repeat
:
...
...
This diff is collapsed.
Click to expand it.
picoquictest/packet_trace_ref.txt
+
1137
−
1135
View file @
04c3a78b
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment