Line 70:
Line 70:
|Recives the latest error???
|Recives the latest error???
|The latest error(SO_*)???
|The latest error(SO_*)???
+
|}
+
+
==Structures==
+
{| class="wikitable"
+
!Name
+
!Data
+
|-
+
|sockaddr_in
+
|
+
<syntaxhighlight lang="C">
+
typedef struct {
+
u16 sin_family;
+
u16 sin_port;
+
struct in_addr sin_addr;
+
char sin_zero[8];
+
} sockaddr_in;
+
</syntaxhighlight>
|}
|}
Line 100:
Line 117:
|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 {
−
u16 sin_family;
−
u16 sin_port;
−
struct in_addr sin_addr;
−
char sin_zero[8];
−
} sockaddr_in;
−
</syntaxhighlight>
|}
|}