-
Notifications
You must be signed in to change notification settings - Fork 177
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
udp receive logic redesign #1271
Changes from 21 commits
b3d89f8
e8011af
7892840
e6c2458
f0baa8a
7486257
a238c1c
aa39d7c
8de0a9a
181506f
e0a969e
f0061ca
71c79a8
61455d5
82c4237
94eca56
f406a3f
59dc218
56a518e
1771300
69da2b1
4a90d87
ac01c7f
36d8dc7
9073656
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
|
@@ -174,14 +174,8 @@ | |||||||||
/* delta time to check timeout for data readers in ms */ | ||||||||||
#define CMN_DATAREADER_TIMEOUT_RESOLUTION_MS 100 | ||||||||||
|
||||||||||
/* cylce time udp registration receive thread in ms */ | ||||||||||
#define CMN_REGISTRATION_RECEIVE_THREAD_CYCLE_TIME_MS 1000 | ||||||||||
|
||||||||||
/* cylce time udp logging receive thread in ms */ | ||||||||||
#define CMN_LOGGING_RECEIVE_THREAD_CYCLE_TIME_MS 1000 | ||||||||||
|
||||||||||
/* cylce time udp paylaod receive thread in ms */ | ||||||||||
#define CMN_PAYLOAD_RECEIVE_THREAD_CYCLE_TIME_MS 1000 | ||||||||||
/* cylce time udp receive threads in ms */ | ||||||||||
#define CMN_UDP_RECEIVE_THREAD_CYCLE_TIME_MS 1000 | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: macro 'CMN_UDP_RECEIVE_THREAD_CYCLE_TIME_MS' defines an integral constant; prefer an enum instead [modernize-macro-to-enum] #define CMN_UDP_RECEIVE_THREAD_CYCLE_TIME_MS 1000
^ |
||||||||||
|
||||||||||
Comment on lines
+178
to
179
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. warning: replace macro with enum [modernize-macro-to-enum]
Suggested change
|
||||||||||
/**********************************************************************************************/ | ||||||||||
/* events */ | ||||||||||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,7 +18,7 @@ | |
*/ | ||
|
||
/** | ||
* @brief UDP initialization | ||
* @brief Win32 network initialization | ||
**/ | ||
|
||
#pragma once | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
warning: variable 'config_pb' is not initialized [cppcoreguidelines-init-variables]