Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
L
libdap-server-core
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-core
Commits
1341b775
Commit
1341b775
authored
6 years ago
by
Dmitriy A. Gerasimov
Browse files
Options
Downloads
Patches
Plain Diff
[*] Renames und fixes
parent
0ab8f358
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+3
-3
3 additions, 3 deletions
CMakeLists.txt
dap_server.c
+2
-1
2 additions, 1 deletion
dap_server.c
dap_server_client.c
+2
-2
2 additions, 2 deletions
dap_server_client.c
dap_server_client.h
+2
-2
2 additions, 2 deletions
dap_server_client.h
with
9 additions
and
8 deletions
CMakeLists.txt
+
3
−
3
View file @
1341b775
...
@@ -10,10 +10,10 @@ if(BUILD_DAP_CORE_SERVER_TESTS)
...
@@ -10,10 +10,10 @@ if(BUILD_DAP_CORE_SERVER_TESTS)
add_subdirectory
(
test
)
add_subdirectory
(
test
)
endif
()
endif
()
file
(
GLOB SOURCES *.c
)
file
(
GLOB
CORE_SERVER_
SOURCES *.c
)
file
(
GLOB HEADERS *.h
)
file
(
GLOB
CORE_SERVER_
HEADERS *.h
)
add_library
(
${
PROJECT_NAME
}
STATIC
${
SOURCES
}
${
HEADERS
}
)
add_library
(
${
PROJECT_NAME
}
STATIC
${
CORE_SERVER_SOURCES
}
${
CORE_SERVER_
HEADERS
}
)
target_link_libraries
(
${
PROJECT_NAME
}
pthread ev dap_crypto
)
target_link_libraries
(
${
PROJECT_NAME
}
pthread ev dap_crypto
)
target_include_directories
(
${
PROJECT_NAME
}
INTERFACE .
)
target_include_directories
(
${
PROJECT_NAME
}
INTERFACE .
)
This diff is collapsed.
Click to expand it.
dap_server.c
+
2
−
1
View file @
1341b775
...
@@ -98,7 +98,7 @@ int dap_server_init(size_t count_threads)
...
@@ -98,7 +98,7 @@ int dap_server_init(size_t count_threads)
pthread_mutex_init
(
&
mutex_on_cnt_connections
,
NULL
);
pthread_mutex_init
(
&
mutex_on_cnt_connections
,
NULL
);
log_it
(
L_NOTICE
,
"Initialized socket server module"
);
log_it
(
L_NOTICE
,
"Initialized socket server module"
);
dap_server_client_init
();
return
0
;
return
0
;
}
}
...
@@ -107,6 +107,7 @@ int dap_server_init(size_t count_threads)
...
@@ -107,6 +107,7 @@ int dap_server_init(size_t count_threads)
*/
*/
void
dap_server_deinit
()
void
dap_server_deinit
()
{
{
dap_server_client_deinit
();
for
(
size_t
i
=
0
;
i
<
_count_threads
;
i
++
)
for
(
size_t
i
=
0
;
i
<
_count_threads
;
i
++
)
free
(
async_watchers
[
i
].
data
);
free
(
async_watchers
[
i
].
data
);
...
...
This diff is collapsed.
Click to expand it.
dap_server_client.c
+
2
−
2
View file @
1341b775
...
@@ -36,7 +36,7 @@
...
@@ -36,7 +36,7 @@
* @brief dap_client_init Init clients module
* @brief dap_client_init Init clients module
* @return Zero if ok others if no
* @return Zero if ok others if no
*/
*/
int
dap_
client_remote
_init
()
int
dap_
server_client
_init
()
{
{
log_it
(
L_NOTICE
,
"Initialized socket client module"
);
log_it
(
L_NOTICE
,
"Initialized socket client module"
);
return
0
;
return
0
;
...
@@ -45,7 +45,7 @@ int dap_client_remote_init()
...
@@ -45,7 +45,7 @@ int dap_client_remote_init()
/**
/**
* @brief dap_client_deinit Deinit clients module
* @brief dap_client_deinit Deinit clients module
*/
*/
void
dap_
client_remote
_deinit
()
void
dap_
server_client
_deinit
()
{
{
}
}
...
...
This diff is collapsed.
Click to expand it.
dap_server_client.h
+
2
−
2
View file @
1341b775
...
@@ -82,8 +82,8 @@ typedef struct dap_server_client{
...
@@ -82,8 +82,8 @@ typedef struct dap_server_client{
int
dap_
client_remote
_init
(
void
);
// Init clients module
int
dap_
server_client
_init
(
void
);
// Init clients module
void
dap_
client_remote
_deinit
(
void
);
// Deinit clients module
void
dap_
server_client
_deinit
(
void
);
// Deinit clients module
dap_server_client_t
*
dap_client_create
(
struct
dap_server
*
sh
,
int
s
,
ev_io
*
w_client
);
// Create new client and add it to the list
dap_server_client_t
*
dap_client_create
(
struct
dap_server
*
sh
,
int
s
,
ev_io
*
w_client
);
// Create new client and add it to the list
dap_server_client_t
*
dap_client_find
(
int
sock
,
struct
dap_server
*
sh
);
// Find client by socket
dap_server_client_t
*
dap_client_find
(
int
sock
,
struct
dap_server
*
sh
);
// Find client by socket
...
...
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