Implement getaddrinfo in wasi_socket_ext.c (#1413)

So getaddrinfo() can be used when compiling wasm app of C programs.
This commit is contained in:
Marcin Kolny
2022-09-02 15:11:58 +02:00
committed by GitHub
parent 9a04c21075
commit 3c4e980c9c
6 changed files with 246 additions and 2 deletions

View File

@ -79,3 +79,4 @@ endfunction()
compile_with_clang(tcp_server.c)
compile_with_clang(tcp_client.c)
compile_with_clang(send_recv.c)
compile_with_clang(addr_resolve.c)