Add function to parse IPv4 addresses

PR #2807 <https://github.com/Genymobile/scrcpy/pull/2807>

Signed-off-by: Romain Vimont <rom@rom1v.com>
This commit is contained in:
RipleyTom
2021-11-18 01:02:53 +01:00
committed by Romain Vimont
parent ba547e3895
commit 52e5181c84
2 changed files with 19 additions and 0 deletions

View File

@@ -68,4 +68,10 @@ net_interrupt(sc_socket socket);
bool
net_close(sc_socket socket);
/**
* Parse `ip` "xxx.xxx.xxx.xxx" to an IPv4 host representation
*/
bool
net_parse_ipv4(const char *ip, uint32_t *ipv4);
#endif