summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_netlib.cpp
blob: ab76d7d815dda8ac4bb682417adb6acee9ab67c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#include "stdafx.h"

void CToxProto::InitNetlib()
{
	wchar_t name[128];
	mir_snwprintf(name, TranslateT("%s connection"), m_tszUserName);

	NETLIBUSER nlu = {};
	nlu.flags = NUF_OUTGOING | NUF_INCOMING | NUF_HTTPCONNS | NUF_UNICODE;
	nlu.szDescriptiveName.w = name;
	nlu.szSettingsModule = m_szModuleName;
	m_hNetlibUser = Netlib_RegisterUser(&nlu);

	debugLogA(__FUNCTION__":Setting protocol / module name to '%s'", m_szModuleName);
}

void CToxProto::UninitNetlib()
{
	Netlib_CloseHandle(m_hNetlibUser);
	m_hNetlibUser = nullptr;
}