//
|
// Copyright 2018 Staysail Systems, Inc. <info@staysail.tech>
|
// Copyright 2018 Capitar IT Group BV <info@capitar.com>
|
//
|
// This software is supplied under the terms of the MIT License, a
|
// copy of which should be located in the distribution where this
|
// file was obtained (LICENSE.txt). A copy of the license may also be
|
// found online at https://opensource.org/licenses/MIT.
|
//
|
|
#include "core/nng_impl.h"
|
|
#ifdef NNG_PLATFORM_WINDOWS
|
|
#include <malloc.h>
|
#include <stdio.h>
|
|
int
|
nni_win_tcp_sysinit(void)
|
{
|
WSADATA data;
|
if (WSAStartup(MAKEWORD(2, 2), &data) != 0) {
|
NNI_ASSERT(LOBYTE(data.wVersion) == 2);
|
NNI_ASSERT(HIBYTE(data.wVersion) == 2);
|
return (nni_win_error(GetLastError()));
|
}
|
return (0);
|
}
|
|
void
|
nni_win_tcp_sysfini(void)
|
{
|
WSACleanup();
|
}
|
|
#endif // NNG_PLATFORM_WINDOWS
|