Added missing entry in a socket family table. This was a serious
bug and should've failed on all platforms but just happened to work on linux and windows.
This commit is contained in:
parent
c4bdd235d0
commit
188d89108b
|
@ -42,6 +42,7 @@
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static const int s_family[] = {
|
static const int s_family[] = {
|
||||||
|
PF_UNSPEC,
|
||||||
PF_INET
|
PF_INET
|
||||||
};
|
};
|
||||||
static const int s_type[] = {
|
static const int s_type[] = {
|
||||||
|
|
|
@ -18,6 +18,7 @@
|
||||||
#include "XArchWindows.h"
|
#include "XArchWindows.h"
|
||||||
|
|
||||||
static const int s_family[] = {
|
static const int s_family[] = {
|
||||||
|
PF_UNSPEC,
|
||||||
PF_INET
|
PF_INET
|
||||||
};
|
};
|
||||||
static const int s_type[] = {
|
static const int s_type[] = {
|
||||||
|
|
Loading…
Reference in New Issue