Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
cm-projects
RIOT
Commits
5322205d
Commit
5322205d
authored
9 years ago
by
Cenk Gündoğan
Browse files
Options
Downloads
Patches
Plain Diff
universal_address: minor doc fixes
parent
d438984a
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
sys/include/universal_address.h
+17
-17
17 additions, 17 deletions
sys/include/universal_address.h
with
17 additions
and
17 deletions
sys/include/universal_address.h
+
17
−
17
View file @
5322205d
...
...
@@ -28,30 +28,30 @@ extern "C" {
#include
<stdint.h>
#include
<stdlib.h>
#define UNIVERSAL_ADDRESS_SIZE (16)
/**< size of the used addresses in bytes
*/
#define UNIVERSAL_ADDRESS_SIZE (16)
/**< size of the used addresses in bytes */
/**
* @brief The container descriptor used to identify a universal address entry
*/
typedef
struct
universal_address_container_t
{
uint8_t
use_count
;
/**< The number of entries link here */
uint8_t
address_size
;
/**< Size in bytes of the used gener
e
ic address */
uint8_t
address
[
UNIVERSAL_ADDRESS_SIZE
];
/**<
t
he gener
e
ic address data */
uint8_t
address_size
;
/**< Size in bytes of the used generic address */
uint8_t
address
[
UNIVERSAL_ADDRESS_SIZE
];
/**<
T
he generic address data */
}
universal_address_container_t
;
/**
* @brief
i
nitialize
s
the datastructure for the entries
* @brief
I
nitialize the data
structure for the entries
*/
void
universal_address_init
(
void
);
/**
* @brief
r
esets the u
secoum
t for all entries
* @brief
R
esets the u
niversal_address_container_t::use_coun
t for all entries
*/
void
universal_address_reset
(
void
);
/**
* @brief Add
s
a given address to the universal address entries
*
if
the
entry already exists, the
use_count will be increased.
* @brief Add a given address to the universal address entries
. If the entry already exists,
* the
universal_address_container_t::
use_count will be increased.
*
* @param[in] addr pointer to the address
* @param[in] addr_size the number of bytes required for the address entry
...
...
@@ -62,15 +62,15 @@ void universal_address_reset(void);
universal_address_container_t
*
universal_address_add
(
uint8_t
*
addr
,
size_t
addr_size
);
/**
* @brief Add
s
a given container from the universal address entries
*
if
the
entry exists, the
use_count will be decreased.
* @brief Add a given container from the universal address entries
. If the entry exists,
* the
universal_address_container_t::
use_count will be decreased.
*
* @param[in] entry pointer to the universal_address_container_t to be removed
*/
void
universal_address_rem
(
universal_address_container_t
*
entry
);
/**
* @brief
c
op
ies
the address from the given container to the provided pointer
* @brief
C
op
y
the address from the given container to the provided pointer
*
* @param[in] entry pointer to the universal_address_container_t
* @param[out] addr pointer to store the address entry
...
...
@@ -84,9 +84,9 @@ uint8_t* universal_address_get_address(universal_address_container_t *entry,
uint8_t
*
addr
,
size_t
*
addr_size
);
/**
* @brief
d
etermine
s
if the entry equals the provided address
* @brief
D
etermine if the entry equals the provided address
* This function requires to be provided with the full size of the used
* address type behind
*
addr to be compar
e
able with the address stored in
*
entry.
* address type behind
@p
addr to be comparable with the address stored in
@p
entry.
*
* @param[in] entry pointer to the universal_address_container_t for compare
* @param[in] addr pointer to the address for compare
...
...
@@ -104,9 +104,9 @@ int universal_address_compare(universal_address_container_t *entry,
/**
* @brief
d
etermine
s
if the entry equals the provided prefix
* @brief
D
etermine if the entry equals the provided prefix
* This function requires to be provided with the full size of the used
* address type behind
*
prefix to be compar
e
able with the address stored in
*
entry.
* address type behind
@p
prefix to be comparable with the address stored in
@p
entry.
*
*
* @param[in] entry pointer to the universal_address_container_t for compare
...
...
@@ -124,19 +124,19 @@ int universal_address_compare_prefix(universal_address_container_t *entry,
uint8_t
*
prefix
,
size_t
prefix_size_in_bits
);
/**
* @brief Print
s
the content of the given entry
* @brief Print the content of the given entry
*
* @param[in] entry pointer to the universal_address_container_t to be printed
*/
void
universal_address_print_entry
(
universal_address_container_t
*
entry
);
/**
* @brief
r
eturn
s
the number of used entries
* @brief
R
eturn the number of used entries
*/
int
universal_address_get_num_used_entries
(
void
);
/**
* @brief Print
s
the content of the gener
e
ic address table up to the used element
* @brief Print the content of the generic address table up to the used element
*/
void
universal_address_print_table
(
void
);
...
...
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