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

void CSkypeProto::InitNetwork()
{
	wchar_t name[128];
	mir_sntprintf(name, _countof(name), TranslateT("%s connection"), m_tszUserName);
	NETLIBUSER nlu = { 0 };
	nlu.cbSize = sizeof(nlu);
	nlu.flags = NUF_OUTGOING | NUF_INCOMING | NUF_HTTPCONNS | NUF_UNICODE;
	nlu.ptszDescriptiveName = name;
	nlu.szSettingsModule = m_szModuleName;
	m_hNetlibUser = (HANDLE)CallService(MS_NETLIB_REGISTERUSER, 0, (LPARAM)&nlu);
}

void CSkypeProto::UnInitNetwork()
{
	ShutdownConnections();
	Netlib_CloseHandle(m_hNetlibUser); m_hNetlibUser = NULL;
}

void CSkypeProto::ShutdownConnections()
{
	Netlib_Shutdown(m_hNetlibUser);
}