blob: f9cf430419fbbdad83a5a7aa4e051c3c0d935935 [file] [log] [blame]
Brian Silverman66f079a2013-08-26 16:24:30 -07001#ifndef AOS_CRIO_IP_H_
2#define AOS_CRIO_IP_H_
3
4#include <inetLib.h>
Brian4a424a22014-04-02 11:52:45 -07005#include <stdint.h>
Brian Silverman66f079a2013-08-26 16:24:30 -07006
7namespace aos {
8namespace util {
9
10// Retrieves the IP address of this cRIO and stores it in *address.
11// Loops infinitely until it succeeds.
12in_addr GetOwnIPAddress();
13
14} // namespace util
15} // namespace aos
16
17#endif // AOS_CRIO_IP_H_