summaryrefslogtreecommitdiff
path: root/protocols/Tox/src/tox_netlib.cpp
blob: 0ba87ed391dec73e40f4b9f7a4800079a7f4d7c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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);
}