summaryrefslogtreecommitdiff
path: root/protocols/AimOscar/thread.cpp
blob: e8044f90d25503f50dff0d1b53e825ba6e01b584 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
/*
Plugin of Miranda IM for communicating with users of the AIM protocol.
Copyright (c) 2008-2012 Boris Krasnovskiy
Copyright (C) 2005-2006 Aaron Myles Landwehr

This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.

You should have received a copy of the GNU General Public License
along with this program.  If not, see <http://www.gnu.org/licenses/>.
*/
#include "aim.h"

void __cdecl CAimProto::accept_file_thread(void* param)//buddy sending file
{
	file_transfer *ft = (file_transfer*)param;	

	HANDLE hConn = NULL;
	if (ft->peer_force_proxy)  //peer is forcing proxy
	{
		hConn = aim_peer_connect(ft->proxy_ip, get_default_port());
		if (hConn) 
		{
			LOG("Connected to proxy ip that buddy specified.");
			ft->hConn = hConn;
			ForkThread(&CAimProto::aim_proxy_helper, ft);
			ft->stop_listen();
		}
	}
	else if (ft->me_force_proxy) //we are forcing proxy
	{
		hConn = aim_peer_connect(AIM_PROXY_SERVER, get_default_port());
		if (hConn) 
		{
			LOG("Connected to proxy ip because we want to use a proxy for the file transfer.");
			ft->requester = true;
			ft->hConn = hConn;
			ForkThread(&CAimProto::aim_proxy_helper, ft);
			ft->stop_listen();
		}
	}
	else 
	{
		bool verif = ft->verified_ip != detected_ip;
		hConn = aim_peer_connect(verif ? ft->verified_ip : ft->local_ip, ft->port);
		if (hConn) 
		{
			LOG("Connected to buddy over P2P port via %s ip.", verif ? "verified": "local");
			ft->accepted = true;
			ft->hConn = hConn;
			aim_file_ad(hServerConn, seqno, ft->sn, ft->icbm_cookie, false, ft->max_ver);
			ForkThread(&CAimProto::aim_dc_helper, ft);
			ft->stop_listen();
		}
		else if (ft->sending)
		{
			hConn = aim_peer_connect(AIM_PROXY_SERVER, get_default_port());
			if (hConn) 
			{
				ft->hConn = hConn;
				ft->requester = true;
				ForkThread(&CAimProto::aim_proxy_helper, ft);
				ft->stop_listen();
			}
		}
		else
		{
			LOG("Failed to connect to buddy- asking buddy to connect to us.");
			ft->listen(this);
			ft->requester = true;
			aim_send_file(hServerConn, seqno, detected_ip, ft->local_port, false, ft);
			return;
		}
	}

	if (hConn == NULL)
	{
		if (ft->req_num)
		{
			aim_file_ad(hServerConn, seqno, ft->sn, ft->icbm_cookie, true, 0);
		}
		sendBroadcast(ft->hContact, ACKTYPE_FILE, ACKRESULT_FAILED, ft, 0);
		ft_list.remove_by_ft(ft);
	}
}