Skip to content

Commit 43c489e

Browse files
paul-szczepanek-armCruz Monrreal II
authored andcommitted
missing doxy
1 parent b581299 commit 43c489e

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

features/netsocket/NetworkStack.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -336,7 +336,7 @@ class NetworkStack: public DNS {
336336
*/
337337
virtual void socket_attach(nsapi_socket_t handle, void (*callback)(void *), void *data) = 0;
338338

339-
/* Set stack-specific socket options
339+
/** Set stack-specific socket options
340340
*
341341
* The setsockopt allow an application to pass stack-specific hints
342342
* to the underlying stack. For unsupported options,
@@ -352,7 +352,7 @@ class NetworkStack: public DNS {
352352
virtual nsapi_error_t setsockopt(nsapi_socket_t handle, int level,
353353
int optname, const void *optval, unsigned optlen);
354354

355-
/* Get stack-specific socket options
355+
/** Get stack-specific socket options
356356
*
357357
* The getstackopt allow an application to retrieve stack-specific hints
358358
* from the underlying stack. For unsupported options,

features/netsocket/nsapi_types.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ typedef struct nsapi_stack_api {
351351
*/
352352
nsapi_error_t (*add_dns_server)(nsapi_stack_t *stack, nsapi_addr_t addr);
353353

354-
/* Set stack-specific stack options
354+
/** Set stack-specific stack options
355355
*
356356
* The setstackopt allow an application to pass stack-specific hints
357357
* to the underlying stack. For unsupported options,
@@ -367,7 +367,7 @@ typedef struct nsapi_stack_api {
367367
nsapi_error_t (*setstackopt)(nsapi_stack_t *stack, int level,
368368
int optname, const void *optval, unsigned optlen);
369369

370-
/* Get stack-specific stack options
370+
/** Get stack-specific stack options
371371
*
372372
* The getstackopt allow an application to retrieve stack-specific hints
373373
* from the underlying stack. For unsupported options,
@@ -567,7 +567,7 @@ typedef struct nsapi_stack_api {
567567
void (*socket_attach)(nsapi_stack_t *stack, nsapi_socket_t socket,
568568
void (*callback)(void *), void *data);
569569

570-
/* Set stack-specific socket options
570+
/** Set stack-specific socket options
571571
*
572572
* The setsockopt allow an application to pass stack-specific hints
573573
* to the underlying stack. For unsupported options,
@@ -584,7 +584,7 @@ typedef struct nsapi_stack_api {
584584
nsapi_error_t (*setsockopt)(nsapi_stack_t *stack, nsapi_socket_t socket, int level,
585585
int optname, const void *optval, unsigned optlen);
586586

587-
/* Get stack-specific socket options
587+
/** Get stack-specific socket options
588588
*
589589
* The getstackopt allow an application to retrieve stack-specific hints
590590
* from the underlying stack. For unsupported options,

0 commit comments

Comments
 (0)