more clean

This commit is contained in:
2024-09-01 17:37:42 +05:30
parent 43912279f1
commit 2a039bd954
3 changed files with 103 additions and 108 deletions

18
System_Calls/readme.md Normal file
View File

@@ -0,0 +1,18 @@
# System Calls :
Below are the system calls that can be used to access network functionality.
* **getaddrinfo()** :
* Function prototye
```
int getaddrinfo(const char *node, // e.g. "www.example.com" or IP
const char *service, // e.g. "http" or port number
const struct addrinfo *hints,
struct addrinfo **res);
```
1. node :
Type : `const char *`