C library providing open_net() function for network socket operations
Provides open_net() (similar to open())
$ #include <opennet.h>
int sock = open_net("example.com", 80);$ #include <opennet.h>
int sock = open_net("192.168.1.1", 8080);$ gcc -o myapp myapp.c -lopennet$ #include <opennet.h>
int sock = open_net("host.com", 443);
if (sock < 0) perror("Connection failed");$ pkg-config --cflags --libs libopennet