All content and materials on this
site are provided "as is". TI and its respective suppliers and providers of content make no representations about
the suitability of these materials for any purpose and disclaim all warranties and conditions with regard to these
materials, including but not limited to all implied warranties and conditions of merchantability, fitness for a
particular purpose, title and non-infringement of any third party intellectual property right. No license, either
express or implied, by estoppel or otherwise, is granted by TI. Use of the information on this site may require a
license from a third party, or a license from TI.
The translation of the family attribute of the socket address struct (from NDK -> SlNetSock and vice versa) in some APIs is missing:
SlNetIfNDK_recvFrom
* The caller can optionally pass a sock addr struct that should be filled in by the stack with the peer's info
* The NDK fills in this struct within NDK_recvfrom with NDK value for family
* But, the struct should have the SlNetSock value of family when the API returns
SlNetIfNDK_sendTo
SlNetIfNDK_connect
* The caller passes a sock addr struct that contain's the peer's info t
* The caller sets sa_family to an SlNetSock value and it is currently passed directly to the underlying NDK API as such
* This should be translated to an NDK value before passing the struct to the NDK API.
The translation of the family attribute of the socket address struct (from NDK -> SlNetSock and vice versa) in some APIs is missing:
SlNetIfNDK_recvFrom
* The caller can optionally pass a sock addr struct that should be filled in by the stack with the peer's info
* The NDK fills in this struct within NDK_recvfrom with NDK value for family
* But, the struct should have the SlNetSock value of family when the API returns
SlNetIfNDK_sendTo
SlNetIfNDK_connect
* The caller passes a sock addr struct that contain's the peer's info t
* The caller sets sa_family to an SlNetSock value and it is currently passed directly to the underlying NDK API as such
* This should be translated to an NDK value before passing the struct to the NDK API.