Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
python-cellframe
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Code
Merge requests
2
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
Show more breadcrumbs
cellframe
python-cellframe
Merge requests
!40
bugs-4415
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
bugs-4415
bugs-4415-d
into
develop
Overview
0
Commits
2
Pipelines
0
Changes
2
Merged
Roman Khlopkov
requested to merge
bugs-4415-d
into
develop
4 years ago
Overview
0
Commits
2
Pipelines
0
Changes
2
Expand
[*] ES UDP server debugged
👍
0
👎
0
Merge request reports
Compare
develop
develop (base)
and
latest version
latest version
5662c170
2 commits,
4 years ago
2 files
+
1
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
modules/dap-sdk/net/core/src/libdap-server-core-python.c
+
1
−
1
Options
@@ -27,6 +27,6 @@ PyObject *dap_server_core_listen(PyObject *self, PyObject *args){
if
(
type
>
1
)
return
NULL
;
PyObject
*
obj
=
_PyObject_New
(
&
dapServer_dapServerType
);
((
PyDapServerObject
*
)
obj
)
->
t_server
=
dap_server_new
(((
PyDapEventsObject
*
)
events
)
->
t_events
,
addr
,
port
,
type
);
((
PyDapServerObject
*
)
obj
)
->
t_server
=
dap_server_new
(((
PyDapEventsObject
*
)
events
)
->
t_events
,
addr
,
port
,
type
,
NULL
);
return
Py_BuildValue
(
"O"
,
obj
);
}
Loading