Line 100:
Line 100:
|43
|43
|The library is not ready, did you forget to initialize it?
|The library is not ready, did you forget to initialize it?
+
|}
+
+
==Structures==
+
{| class="wikitable"
+
!Name
+
!Data
+
|-
+
|sockaddr_in
+
|
+
<syntaxhighlight lang="C">
+
typedef struct {
+
u8 sin_family;
+
u8 sin_port;
+
struct in_addr sin_addr;
+
char sin_zero[8];
+
} sockaddr_in;
+
</syntaxhighlight>
|}
|}