Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-server-udp
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-server-udp
Commits
2874f4d6
Commit
2874f4d6
authored
6 years ago
by
Anatolii Kurotych
Browse files
Options
Downloads
Patches
Plain Diff
[*] rename dap_client_write => dap_client_remote_write
parent
4a69680b
Branches
bugs-2858
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dap_udp_client.c
+2
-2
2 additions, 2 deletions
dap_udp_client.c
with
2 additions
and
2 deletions
dap_udp_client.c
+
2
−
2
View file @
2874f4d6
...
...
@@ -188,7 +188,7 @@ void add_waiting_client(dap_client_remote_t* client){
}
size_t
dap_udp_client_write
(
dap_client_remote_t
*
sc
,
const
void
*
data
,
size_t
data_size
){
size_t
size
=
dap_client_write
(
sc
,
data
,
data_size
);
size_t
size
=
dap_client_
remote_
write
(
sc
,
data
,
data_size
);
add_waiting_client
(
sc
);
return
size
;
}
...
...
@@ -197,7 +197,7 @@ size_t dap_udp_client_write_f(dap_client_remote_t *a_client, const char * a_form
size_t
size
=
0
;
va_list
ap
;
va_start
(
ap
,
a_format
);
size
=
dap_client_write_f
(
a_client
,
a_format
,
ap
);
size
=
dap_client_
remote_
write_f
(
a_client
,
a_format
,
ap
);
va_end
(
ap
);
add_waiting_client
(
a_client
);
return
size
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
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