diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-12 11:45:28 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2012-10-12 11:45:28 +0000 |
commit | 08fd5437555d0b5cab972fb3316b4cdb8f11cdae (patch) | |
tree | c18c5bfd833781b935871f6ffa7d4c14769f52ec /protocols/AimOscar/src/thread.cpp | |
parent | 8473fb7c85680042038cc0ad40d4e22bb6a639e7 (diff) |
AimOscar: folders restructurization
git-svn-id: http://svn.miranda-ng.org/main/trunk@1886 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'protocols/AimOscar/src/thread.cpp')
-rw-r--r-- | protocols/AimOscar/src/thread.cpp | 92 |
1 files changed, 92 insertions, 0 deletions
diff --git a/protocols/AimOscar/src/thread.cpp b/protocols/AimOscar/src/thread.cpp new file mode 100644 index 0000000000..e8044f90d2 --- /dev/null +++ b/protocols/AimOscar/src/thread.cpp @@ -0,0 +1,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);
+ }
+}
|