Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-stream-ch-chain-net
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
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
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
cellframe
libdap-stream-ch-chain-net
Compare revisions
3c768e4b51cd4dc87893769ee0693992138be675 to 5ffbfcbd2a475b252938bdd1c793dc7c612b105d
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
cellframe/libdap-stream-ch-chain-net
Select target project
No results found
5ffbfcbd2a475b252938bdd1c793dc7c612b105d
Select Git revision
Branches
1.1-11-Win
feature-2198
feature-2314
master
support_2719-1
Swap
Target
cellframe/libdap-stream-ch-chain-net
Select target project
cellframe/libdap-stream-ch-chain-net
1 result
3c768e4b51cd4dc87893769ee0693992138be675
Select Git revision
Branches
1.1-11-Win
feature-2198
feature-2314
master
support_2719-1
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
[-] Removed debug output
· 5ffbfcbd
Dmitriy A. Gerasimov
authored
4 years ago
5ffbfcbd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-1
1 addition, 1 deletion
.gitignore
dap_stream_ch_chain_net.c
+2
-2
2 additions, 2 deletions
dap_stream_ch_chain_net.c
with
3 additions
and
3 deletions
.gitignore
View file @
5ffbfcbd
# Prerequisites
*.d
*.autosave
# Object files
*.o
*.ko
...
...
This diff is collapsed.
Click to expand it.
dap_stream_ch_chain_net.c
View file @
5ffbfcbd
...
...
@@ -204,7 +204,7 @@ void s_stream_ch_packet_in(dap_stream_ch_t* a_ch, void* a_arg)
break
;
// received ping request - > send pong request
case
DAP_STREAM_CH_CHAIN_NET_PKT_TYPE_PING
:
{
log_it
(
L_INFO
,
"Get STREAM_CH_CHAIN_NET_PKT_TYPE_PING"
);
//
log_it(L_INFO, "Get STREAM_CH_CHAIN_NET_PKT_TYPE_PING");
dap_stream_ch_chain_net_pkt_write
(
a_ch
,
DAP_STREAM_CH_CHAIN_NET_PKT_TYPE_PONG
,
l_ch_chain_net_pkt
->
hdr
.
net_id
,
NULL
,
0
);
dap_stream_ch_set_ready_to_write
(
a_ch
,
true
);
...
...
@@ -212,7 +212,7 @@ void s_stream_ch_packet_in(dap_stream_ch_t* a_ch, void* a_arg)
break
;
// receive pong request -> send nothing
case
DAP_STREAM_CH_CHAIN_NET_PKT_TYPE_PONG
:
{
log_it
(
L_INFO
,
"Get STREAM_CH_CHAIN_NET_PKT_TYPE_PONG"
);
//
log_it(L_INFO, "Get STREAM_CH_CHAIN_NET_PKT_TYPE_PONG");
dap_stream_ch_set_ready_to_write
(
a_ch
,
false
);
}
break
;
...
...
This diff is collapsed.
Click to expand it.