Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 521 Bytes

README.md

File metadata and controls

24 lines (19 loc) · 521 Bytes

NetTool

This is a set of functions that i've been implementing for socket creation and socket management.

Usage

When you want to create a server or a client in C usgin sockets, you can include this file and code faster. This include a set of colored message functions.

Here is an example of usage :

#include"NetTool/NetTool.c"

int main(void){

int socketDescriptor = CreateSocket(1);
.
.
. 
BindSocket(dS,"2222");
promptM("Binding done !");
}

Man page

A man page is currently in work in progress.