Skip to content
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

Fix #1096, Add OSAL prefix to Network API group #1097

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/osalmain.dox
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@
<UL>
<LI> APIs
<UL>
<LI> \ref OSALAPINetwork
<LI> \ref OSAPINetwork
<LI> \ref OSAPISocketAddr
<LI> \ref OSALAPISocket
<LI> \ref OSAPISocket
</UL>
<LI> \subpage osapi-network.h "Network Reference"
<LI> \subpage osapi-sockets.h "Socket Reference"
Expand Down
2 changes: 1 addition & 1 deletion src/os/inc/osapi-network.h
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "common_types.h"

/**
* @defgroup OSALAPINetwork Network ID APIs
* @defgroup OSAPINetwork OSAL Network ID APIs
*
* Provides some basic methods to query a network host name and ID
*
Expand Down
2 changes: 1 addition & 1 deletion src/os/inc/osapi-sockets.h
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ int32 OS_SocketAddrSetPort(OS_SockAddr_t *Addr, uint16 PortNum);
/**@}*/

/**
* @defgroup OSALAPISocket OSAL Socket Management APIs
* @defgroup OSAPISocket OSAL Socket Management APIs
*
* These functions are loosely related to the BSD Sockets API but made to be
* more consistent with other OSAL API functions. That is, they operate on
Expand Down