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
09119708
Commit
09119708
authored
7 years ago
by
Hauke Petersen
Browse files
Options
Downloads
Patches
Plain Diff
net/gcoap: fixed/unified alignment in gcoap header
parent
ba563588
No related branches found
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
sys/include/net/gcoap.h
+19
-19
19 additions, 19 deletions
sys/include/net/gcoap.h
with
19 additions
and
19 deletions
sys/include/net/gcoap.h
+
19
−
19
View file @
09119708
...
...
@@ -150,15 +150,15 @@ extern "C" {
#endif
/** @brief Size for module message queue */
#define GCOAP_MSG_QUEUE_SIZE (4)
#define GCOAP_MSG_QUEUE_SIZE
(4)
/** @brief Server port; use RFC 7252 default if not defined */
#ifndef GCOAP_PORT
#define GCOAP_PORT (5683)
#define GCOAP_PORT
(5683)
#endif
/** @brief Size of the buffer used to build a CoAP request or response. */
#define GCOAP_PDU_BUF_SIZE (128)
#define GCOAP_PDU_BUF_SIZE
(128)
/**
* @brief Size of the buffer used to write options, other than Uri-Path, in a
...
...
@@ -166,7 +166,7 @@ extern "C" {
*
* Accommodates Content-Format.
*/
#define GCOAP_REQ_OPTIONS_BUF (8)
#define GCOAP_REQ_OPTIONS_BUF
(8)
/**
* @brief Size of the buffer used to write options in a response.
...
...
@@ -186,25 +186,25 @@ extern "C" {
/** @brief Length in bytes for a token; use 2 if not defined */
#ifndef GCOAP_TOKENLEN
#define GCOAP_TOKENLEN (2)
#define GCOAP_TOKENLEN
(2)
#endif
/** @brief Marks the boundary between header and payload */
#define GCOAP_PAYLOAD_MARKER (0xFF)
#define GCOAP_PAYLOAD_MARKER
(0xFF)
/**
* @name States for the memo used to track waiting for a response
* @{
*/
#define GCOAP_MEMO_UNUSED (0)
/**< This memo is unused */
#define GCOAP_MEMO_WAIT (1)
/**< Request sent; awaiting response */
#define GCOAP_MEMO_RESP (2)
/**< Got response */
#define GCOAP_MEMO_TIMEOUT (3)
/**< Timeout waiting for response */
#define GCOAP_MEMO_ERR (4)
/**< Error processing response packet */
#define GCOAP_MEMO_UNUSED
(0)
/**< This memo is unused */
#define GCOAP_MEMO_WAIT
(1)
/**< Request sent; awaiting response */
#define GCOAP_MEMO_RESP
(2)
/**< Got response */
#define GCOAP_MEMO_TIMEOUT
(3)
/**< Timeout waiting for response */
#define GCOAP_MEMO_ERR
(4)
/**< Error processing response packet */
/** @} */
/** @brief Time in usec that the event loop waits for an incoming CoAP message */
#define GCOAP_RECV_TIMEOUT (1 * US_PER_SEC)
#define GCOAP_RECV_TIMEOUT
(1 * US_PER_SEC)
/**
*
...
...
@@ -212,10 +212,10 @@ extern "C" {
*
* Set to 0 to disable timeout.
*/
#define GCOAP_NON_TIMEOUT (5000000U)
#define GCOAP_NON_TIMEOUT
(5000000U)
/** @brief Identifies waiting timed out for a response to a sent message. */
#define GCOAP_MSG_TYPE_TIMEOUT
(0x1501)
#define GCOAP_MSG_TYPE_TIMEOUT (0x1501)
/**
* @brief Identifies a request to interrupt listening for an incoming message
...
...
@@ -223,16 +223,16 @@ extern "C" {
*
* Allows the event loop to process IPC messages.
*/
#define GCOAP_MSG_TYPE_INTR (0x1502)
#define GCOAP_MSG_TYPE_INTR
(0x1502)
/**
* @brief A modular collection of resources for a server
*/
typedef
struct
gcoap_listener
{
coap_resource_t
*
resources
;
/**< First element in the array of
resources;
must order alphabetically */
size_t
resources_len
;
/**< Length of array */
struct
gcoap_listener
*
next
;
/**< Next listener in list */
coap_resource_t
*
resources
;
/**< First element in the array of
* resources;
must order alphabetically */
size_t
resources_len
;
/**< Length of array */
struct
gcoap_listener
*
next
;
/**< Next listener in list */
}
gcoap_listener_t
;
/**
...
...
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