build: Move stuff to be shared to lib/ (nvt_log, socket)

This commit is contained in:
Kim Woelders
2023-02-12 15:52:48 +01:00
parent ac58d1a470
commit a49f95a300
10 changed files with 17 additions and 8 deletions
+9
View File
@@ -0,0 +1,9 @@
/*
* Socket functions
*/
#ifndef NVT_SOCKET_H
#define NVT_SOCKET_H
int socket_create_client(const char *host, unsigned int port);
#endif /* NVT_SOCKET_H */