Arduino live555
All Classes Functions Pages
inet.hh
1 #pragma once
2 #include "Config.hh"
3 #include "NetAddress.hh"
4 
5 #ifdef __cplusplus
6 extern "C" {
7 #endif
8 
9 // The following are implemented in inet.c:
10 ipv4AddressBits our_inet_addr(char const*);
11 
12 long our_random();
13 
14 void our_srandom(unsigned int x);
15 
16 u_int32_t our_random32(); // because "our_random()" returns a 31-bit number
17 
18 #ifdef __cplusplus
19 }
20 #endif