Mercurial > pidgin
annotate libpurple/protocols/yahoo/yahoo_filexfer.c @ 32819:2c6510167895 default tip
propagate from branch 'im.pidgin.pidgin.2.x.y' (head 3315c5dfbd0ad16511bdcf865e5b07c02d07df24)
to branch 'im.pidgin.pidgin' (head cbd1eda6bcbf0565ae7766396bb8f6f419cb6a9a)
author | Elliott Sales de Andrade <qulogic@pidgin.im> |
---|---|
date | Sat, 02 Jun 2012 02:30:49 +0000 |
parents | 5bd5e024c977 |
children |
rev | line source |
---|---|
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1 /* |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
2 * @file yahoo_filexfer.c Yahoo Filetransfer |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
3 * |
15822 | 4 * Purple is the legal property of its developers, whose names are too numerous |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
5 * to list here. Please refer to the COPYRIGHT file distributed with this |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
6 * source distribution. |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
7 * |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
8 * This program is free software; you can redistribute it and/or modify |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
9 * it under the terms of the GNU General Public License as published by |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
10 * the Free Software Foundation; either version 2 of the License, or |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
11 * (at your option) any later version. |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
12 * |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
13 * This program is distributed in the hope that it will be useful, |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
16 * GNU General Public License for more details. |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
17 * |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
18 * You should have received a copy of the GNU General Public License |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
19 * along with this program; if not, write to the Free Software |
19681
44b4e8bd759b
The FSF changed its address a while ago; our files were out of date.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
18769
diff
changeset
|
20 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02111-1301 USA |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
21 */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
22 |
18210
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
15822
diff
changeset
|
23 #include "internal.h" |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
24 #include "dnsquery.h" |
18210
b8572b937c09
#include reorganizations to allow compiling with glib < 2.8 using the
Stu Tomlinson <stu@nosnilmot.com>
parents:
15822
diff
changeset
|
25 |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
26 #include "prpl.h" |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
27 #include "util.h" |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
28 #include "debug.h" |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
29 #include "network.h" |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
30 #include "notify.h" |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
31 #include "proxy.h" |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
32 #include "ft.h" |
27313
ef5f0cde8d74
Update for file renames.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27302
diff
changeset
|
33 #include "libymsg.h" |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
34 #include "yahoo_packet.h" |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
35 #include "yahoo_filexfer.h" |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
36 #include "yahoo_doodle.h" |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
37 #include "yahoo_friend.h" |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
38 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
39 struct yahoo_xfer_data { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
40 gchar *host; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
41 gchar *path; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
42 int port; |
15822 | 43 PurpleConnection *gc; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
44 long expires; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
45 gboolean started; |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
46 guchar *txbuf; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
47 gsize txbuflen; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
48 gsize txbuf_written; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
49 guint tx_handler; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
50 gchar *rxqueue; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
51 guint rxlen; |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
52 gchar *xfer_peer_idstring; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
53 gchar *xfer_idstring_for_relay; |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
54 int version; /* 0 for old, 15 for Y7(YMSG 15) */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
55 int info_val_249; |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
56 |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
57 enum { |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
58 STARTED = 0, |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
59 HEAD_REQUESTED, |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
60 HEAD_REPLY_RECEIVED, |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
61 TRANSFER_PHASE, |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
62 ACCEPTED, |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
63 P2P_HEAD_REQUESTED, |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
64 P2P_HEAD_REPLIED, |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
65 P2P_GET_REQUESTED |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
66 } status_15; |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
67 |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
68 /* contains all filenames, in case of multiple transfers, with the first |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
69 * one in the list being the current file's name (ymsg15) */ |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
70 GSList *filename_list; |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
71 GSList *size_list; /* corresponds to filename_list, with size as **STRING** */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
72 gboolean firstoflist; |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
73 gchar *xfer_url; /* url of the file, used when we are p2p server */ |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
74 int yahoo_local_p2p_ft_server_fd; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
75 int yahoo_local_p2p_ft_server_port; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
76 int yahoo_p2p_ft_server_watcher; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
77 int input_event; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
78 }; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
79 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
80 static void yahoo_xfer_data_free(struct yahoo_xfer_data *xd) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
81 { |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
82 PurpleConnection *gc; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
83 YahooData *yd; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
84 PurpleXfer *xfer; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
85 GSList *l; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
86 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
87 gc = xd->gc; |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
88 yd = purple_connection_get_protocol_data(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
89 |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
90 /* remove entry from map */ |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
91 if(xd->xfer_peer_idstring) { |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
92 xfer = g_hash_table_lookup(yd->xfer_peer_idstring_map, xd->xfer_peer_idstring); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
93 if(xfer) |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
94 g_hash_table_remove(yd->xfer_peer_idstring_map, xd->xfer_peer_idstring); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
95 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
96 |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
97 /* empty file & filesize list */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
98 for (l = xd->filename_list; l; l = l->next) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
99 g_free(l->data); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
100 l->data=NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
101 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
102 for (l = xd->size_list; l; l = l->next) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
103 g_free(l->data); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
104 l->data=NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
105 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
106 g_slist_free(xd->filename_list); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
107 g_slist_free(xd->size_list); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
108 |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
109 g_free(xd->host); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
110 g_free(xd->path); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
111 g_free(xd->txbuf); |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
112 g_free(xd->xfer_peer_idstring); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
113 g_free(xd->xfer_idstring_for_relay); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
114 if (xd->tx_handler) |
15822 | 115 purple_input_remove(xd->tx_handler); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
116 g_free(xd); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
117 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
118 |
15822 | 119 static void yahoo_receivefile_send_cb(gpointer data, gint source, PurpleInputCondition condition) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
120 { |
15822 | 121 PurpleXfer *xfer; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
122 struct yahoo_xfer_data *xd; |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
123 gssize remaining, written; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
124 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
125 xfer = data; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
126 xd = purple_xfer_get_protocol_data(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
127 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
128 remaining = xd->txbuflen - xd->txbuf_written; |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
129 written = purple_xfer_write(xfer, xd->txbuf + xd->txbuf_written, remaining); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
130 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
131 if (written < 0 && errno == EAGAIN) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
132 written = 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
133 else if (written <= 0) { |
15822 | 134 purple_debug_error("yahoo", "Unable to write in order to start ft errno = %d\n", errno); |
135 purple_xfer_cancel_remote(xfer); | |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
136 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
137 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
138 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
139 if (written < remaining) { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
140 xd->txbuf_written += written; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
141 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
142 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
143 |
15822 | 144 purple_input_remove(xd->tx_handler); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
145 xd->tx_handler = 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
146 g_free(xd->txbuf); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
147 xd->txbuf = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
148 xd->txbuflen = 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
149 |
15822 | 150 purple_xfer_start(xfer, source, NULL, 0); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
151 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
152 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
153 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
154 static void yahoo_receivefile_connected(gpointer data, gint source, const gchar *error_message) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
155 { |
15822 | 156 PurpleXfer *xfer; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
157 struct yahoo_xfer_data *xd; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
158 |
27302
377e063ecda5
Convert the yahoo prpl to using the debug convenience functions instead of
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27181
diff
changeset
|
159 purple_debug_info("yahoo", "in yahoo_receivefile_connected\n"); |
377e063ecda5
Convert the yahoo prpl to using the debug convenience functions instead of
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27181
diff
changeset
|
160 |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
161 if (!(xfer = data)) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
162 return; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
163 if (!(xd = purple_xfer_get_protocol_data(xfer))) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
164 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
165 if ((source < 0) || (xd->path == NULL) || (xd->host == NULL)) { |
15822 | 166 purple_xfer_error(PURPLE_XFER_RECEIVE, purple_xfer_get_account(xfer), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
167 purple_xfer_get_remote_user(xfer), _("Unable to connect.")); |
15822 | 168 purple_xfer_cancel_remote(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
169 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
170 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
171 |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
172 purple_xfer_set_fd(xfer, source); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
173 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
174 /* The first time we get here, assemble the tx buffer */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
175 if (xd->txbuflen == 0) { |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
176 gchar *header = g_strdup_printf("GET /%s HTTP/1.0\r\nHost: %s\r\n\r\n", |
22017
97d530d11cc0
Revert patch that added receive-only transfer support for Yahoo protocol
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21803
diff
changeset
|
177 xd->path, xd->host); |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
178 xd->txbuf = (guchar*) header; |
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
179 xd->txbuflen = strlen(header); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
180 xd->txbuf_written = 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
181 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
182 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
183 if (!xd->tx_handler) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
184 { |
15822 | 185 xd->tx_handler = purple_input_add(source, PURPLE_INPUT_WRITE, |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
186 yahoo_receivefile_send_cb, xfer); |
15822 | 187 yahoo_receivefile_send_cb(xfer, source, PURPLE_INPUT_WRITE); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
188 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
189 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
190 |
15822 | 191 static void yahoo_sendfile_send_cb(gpointer data, gint source, PurpleInputCondition condition) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
192 { |
15822 | 193 PurpleXfer *xfer; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
194 struct yahoo_xfer_data *xd; |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
195 gssize written, remaining; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
196 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
197 xfer = data; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
198 xd = purple_xfer_get_protocol_data(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
199 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
200 remaining = xd->txbuflen - xd->txbuf_written; |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
201 written = purple_xfer_write(xfer, xd->txbuf + xd->txbuf_written, remaining); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
202 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
203 if (written < 0 && errno == EAGAIN) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
204 written = 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
205 else if (written <= 0) { |
15822 | 206 purple_debug_error("yahoo", "Unable to write in order to start ft errno = %d\n", errno); |
207 purple_xfer_cancel_remote(xfer); | |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
208 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
209 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
210 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
211 if (written < remaining) { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
212 xd->txbuf_written += written; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
213 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
214 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
215 |
15822 | 216 purple_input_remove(xd->tx_handler); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
217 xd->tx_handler = 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
218 g_free(xd->txbuf); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
219 xd->txbuf = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
220 xd->txbuflen = 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
221 |
15822 | 222 purple_xfer_start(xfer, source, NULL, 0); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
223 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
224 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
225 static void yahoo_sendfile_connected(gpointer data, gint source, const gchar *error_message) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
226 { |
15822 | 227 PurpleXfer *xfer; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
228 struct yahoo_xfer_data *xd; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
229 struct yahoo_packet *pkt; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
230 gchar *size, *filename, *encoded_filename, *header; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
231 guchar *pkt_buf; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
232 const char *host; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
233 int port; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
234 size_t content_length, header_len, pkt_buf_len; |
15822 | 235 PurpleConnection *gc; |
236 PurpleAccount *account; | |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
237 YahooData *yd; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
238 |
27302
377e063ecda5
Convert the yahoo prpl to using the debug convenience functions instead of
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27181
diff
changeset
|
239 purple_debug_info("yahoo", "in yahoo_sendfile_connected\n"); |
377e063ecda5
Convert the yahoo prpl to using the debug convenience functions instead of
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27181
diff
changeset
|
240 |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
241 if (!(xfer = data)) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
242 return; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
243 if (!(xd = purple_xfer_get_protocol_data(xfer))) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
244 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
245 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
246 if (source < 0) { |
15822 | 247 purple_xfer_error(PURPLE_XFER_RECEIVE, purple_xfer_get_account(xfer), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
248 purple_xfer_get_remote_user(xfer), _("Unable to connect.")); |
15822 | 249 purple_xfer_cancel_remote(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
250 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
251 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
252 |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
253 purple_xfer_set_fd(xfer, source); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
254 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
255 /* Assemble the tx buffer */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
256 gc = xd->gc; |
15822 | 257 account = purple_connection_get_account(gc); |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
258 yd = purple_connection_get_protocol_data(gc); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
259 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
260 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANSFER, |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
261 YAHOO_STATUS_AVAILABLE, yd->session_id); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
262 |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
263 size = g_strdup_printf("%" G_GOFFSET_FORMAT, purple_xfer_get_size(xfer)); |
15822 | 264 filename = g_path_get_basename(purple_xfer_get_local_filename(xfer)); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
265 encoded_filename = yahoo_string_encode(gc, filename, NULL); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
266 |
15822 | 267 yahoo_packet_hash(pkt, "sssss", 0, purple_connection_get_display_name(gc), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
268 5, purple_xfer_get_remote_user(xfer), 14, "", 27, encoded_filename, 28, size); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
269 g_free(size); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
270 g_free(encoded_filename); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
271 g_free(filename); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
272 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
273 content_length = YAHOO_PACKET_HDRLEN + yahoo_packet_length(pkt); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
274 |
24383
af8b35c7730d
Patch from 'siddish' to fix Yahoo! file transfers with older (i.e. non-p15)
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22818
diff
changeset
|
275 pkt_buf_len = yahoo_packet_build(pkt, 4, FALSE, yd->jp, &pkt_buf); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
276 yahoo_packet_free(pkt); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
277 |
15822 | 278 host = purple_account_get_string(account, "xfer_host", YAHOO_XFER_HOST); |
279 port = purple_account_get_int(account, "xfer_port", YAHOO_XFER_PORT); | |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
280 header = g_strdup_printf( |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
281 "POST http://%s:%d/notifyft HTTP/1.0\r\n" |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
282 "Content-length: %" G_GOFFSET_FORMAT "\r\n" |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
283 "Host: %s:%d\r\n" |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
284 "Cookie: Y=%s; T=%s\r\n" |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
285 "\r\n", |
15822 | 286 host, port, content_length + 4 + purple_xfer_get_size(xfer), |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
287 host, port, yd->cookie_y, yd->cookie_t); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
288 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
289 header_len = strlen(header); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
290 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
291 xd->txbuflen = header_len + pkt_buf_len + 4; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
292 xd->txbuf = g_malloc(xd->txbuflen); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
293 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
294 memcpy(xd->txbuf, header, header_len); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
295 g_free(header); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
296 memcpy(xd->txbuf + header_len, pkt_buf, pkt_buf_len); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
297 g_free(pkt_buf); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
298 memcpy(xd->txbuf + header_len + pkt_buf_len, "29\xc0\x80", 4); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
299 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
300 xd->txbuf_written = 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
301 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
302 if (xd->tx_handler == 0) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
303 { |
15822 | 304 xd->tx_handler = purple_input_add(source, PURPLE_INPUT_WRITE, |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
305 yahoo_sendfile_send_cb, xfer); |
15822 | 306 yahoo_sendfile_send_cb(xfer, source, PURPLE_INPUT_WRITE); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
307 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
308 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
309 |
15822 | 310 static void yahoo_xfer_init(PurpleXfer *xfer) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
311 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
312 struct yahoo_xfer_data *xfer_data; |
15822 | 313 PurpleConnection *gc; |
314 PurpleAccount *account; | |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
315 YahooData *yd; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
316 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
317 xfer_data = purple_xfer_get_protocol_data(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
318 gc = xfer_data->gc; |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
319 yd = purple_connection_get_protocol_data(gc); |
15822 | 320 account = purple_connection_get_account(gc); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
321 |
15822 | 322 if (purple_xfer_get_type(xfer) == PURPLE_XFER_SEND) { |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
323 if (yd->jp) { |
27119
d078048fb03a
Pass the gc as the handle in a bunch of calls to purple_proxy_connect
Mark Doliner <mark@kingant.net>
parents:
27111
diff
changeset
|
324 if (purple_proxy_connect(gc, account, purple_account_get_string(account, "xferjp_host", YAHOOJP_XFER_HOST), |
15822 | 325 purple_account_get_int(account, "xfer_port", YAHOO_XFER_PORT), |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
326 yahoo_sendfile_connected, xfer) == NULL) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
327 { |
15822 | 328 purple_notify_error(gc, NULL, _("File Transfer Failed"), |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
329 _("Unable to establish file descriptor.")); |
15822 | 330 purple_xfer_cancel_remote(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
331 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
332 } else { |
27119
d078048fb03a
Pass the gc as the handle in a bunch of calls to purple_proxy_connect
Mark Doliner <mark@kingant.net>
parents:
27111
diff
changeset
|
333 if (purple_proxy_connect(gc, account, purple_account_get_string(account, "xfer_host", YAHOO_XFER_HOST), |
15822 | 334 purple_account_get_int(account, "xfer_port", YAHOO_XFER_PORT), |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
335 yahoo_sendfile_connected, xfer) == NULL) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
336 { |
15822 | 337 purple_notify_error(gc, NULL, _("File Transfer Failed"), |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
338 _("Unable to establish file descriptor.")); |
15822 | 339 purple_xfer_cancel_remote(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
340 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
341 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
342 } else { |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
343 purple_xfer_set_fd(xfer, -1); |
27119
d078048fb03a
Pass the gc as the handle in a bunch of calls to purple_proxy_connect
Mark Doliner <mark@kingant.net>
parents:
27111
diff
changeset
|
344 if (purple_proxy_connect(gc, account, xfer_data->host, xfer_data->port, |
20208
63b1ce39965c
applied changes from 7f71045586c32cffc40f836f3fba92c693adda57
Richard Laager <rlaager@wiktel.com>
parents:
19681
diff
changeset
|
345 yahoo_receivefile_connected, xfer) == NULL) { |
15822 | 346 purple_notify_error(gc, NULL, _("File Transfer Failed"), |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
347 _("Unable to establish file descriptor.")); |
15822 | 348 purple_xfer_cancel_remote(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
349 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
350 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
351 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
352 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
353 static void yahoo_xfer_init_15(PurpleXfer *xfer) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
354 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
355 struct yahoo_xfer_data *xfer_data; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
356 PurpleConnection *gc; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
357 PurpleAccount *account; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
358 YahooData *yd; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
359 struct yahoo_packet *pkt; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
360 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
361 xfer_data = purple_xfer_get_protocol_data(xfer); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
362 gc = xfer_data->gc; |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
363 yd = purple_connection_get_protocol_data(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
364 account = purple_connection_get_account(gc); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
365 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
366 if (purple_xfer_get_type(xfer) == PURPLE_XFER_SEND) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
367 gchar *filename; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
368 filename = g_path_get_basename(purple_xfer_get_local_filename(xfer)); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
369 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_15, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
370 YAHOO_STATUS_AVAILABLE, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
371 yd->session_id); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
372 yahoo_packet_hash(pkt, "sssiiiisiii", |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
373 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
374 5, purple_xfer_get_remote_user(xfer), |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
375 265, xfer_data->xfer_peer_idstring, |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
376 222, 1, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
377 266, 1, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
378 302, 268, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
379 300, 268, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
380 27, filename, |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
381 28, (int)purple_xfer_get_size(xfer), |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
382 301, 268, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
383 303, 268); |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
384 g_free(filename); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
385 } else { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
386 if(xfer_data->firstoflist == TRUE) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
387 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_15, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
388 YAHOO_STATUS_AVAILABLE, yd->session_id); |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
389 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
390 yahoo_packet_hash(pkt, "sssi", |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
391 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
392 5, purple_xfer_get_remote_user(xfer), |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
393 265, xfer_data->xfer_peer_idstring, |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
394 222, 3); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
395 } else { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
396 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_ACC_15, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
397 YAHOO_STATUS_AVAILABLE, yd->session_id); |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
398 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
399 yahoo_packet_hash(pkt, "sssi", |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
400 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
401 5, purple_xfer_get_remote_user(xfer), |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
402 265, xfer_data->xfer_peer_idstring, |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
403 271, 1); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
404 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
405 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
406 yahoo_packet_send_and_free(pkt, yd); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
407 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
408 |
15822 | 409 static void yahoo_xfer_start(PurpleXfer *xfer) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
410 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
411 /* We don't need to do anything here, do we? */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
412 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
413 |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
414 static goffset calculate_length(const gchar *l, size_t len) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
415 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
416 int i; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
417 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
418 for (i = 0; i < len; i++) { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
419 if (!g_ascii_isdigit(l[i])) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
420 continue; |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
421 return g_ascii_strtoll(l + i, NULL, 10); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
422 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
423 return 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
424 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
425 |
15822 | 426 static gssize yahoo_xfer_read(guchar **buffer, PurpleXfer *xfer) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
427 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
428 gchar buf[4096]; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
429 gssize len; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
430 gchar *start = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
431 gchar *length; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
432 gchar *end; |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
433 goffset filelen; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
434 struct yahoo_xfer_data *xd = purple_xfer_get_protocol_data(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
435 |
15822 | 436 if (purple_xfer_get_type(xfer) != PURPLE_XFER_RECEIVE) { |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
437 return 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
438 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
439 |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
440 len = read(purple_xfer_get_fd(xfer), buf, sizeof(buf)); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
441 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
442 if (len <= 0) { |
15822 | 443 if ((purple_xfer_get_size(xfer) > 0) && |
444 (purple_xfer_get_bytes_sent(xfer) >= purple_xfer_get_size(xfer))) { | |
445 purple_xfer_set_completed(xfer, TRUE); | |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
446 return 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
447 } else |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
448 return -1; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
449 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
450 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
451 if (!xd->started) { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
452 xd->rxqueue = g_realloc(xd->rxqueue, len + xd->rxlen); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
453 memcpy(xd->rxqueue + xd->rxlen, buf, len); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
454 xd->rxlen += len; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
455 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
456 length = g_strstr_len(xd->rxqueue, len, "Content-length:"); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
457 /* some proxies re-write this header, changing the capitalization :( |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
458 * technically that's allowed since headers are case-insensitive |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
459 * [RFC 2616, section 4.2] */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
460 if (length == NULL) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
461 length = g_strstr_len(xd->rxqueue, len, "Content-Length:"); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
462 if (length) { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
463 end = g_strstr_len(length, length - xd->rxqueue, "\r\n"); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
464 if (!end) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
465 return 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
466 if ((filelen = calculate_length(length, len - (length - xd->rxqueue)))) |
15822 | 467 purple_xfer_set_size(xfer, filelen); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
468 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
469 start = g_strstr_len(xd->rxqueue, len, "\r\n\r\n"); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
470 if (start) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
471 start += 4; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
472 if (!start || start > (xd->rxqueue + len)) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
473 return 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
474 xd->started = TRUE; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
475 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
476 len -= (start - xd->rxqueue); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
477 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
478 *buffer = g_malloc(len); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
479 memcpy(*buffer, start, len); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
480 g_free(xd->rxqueue); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
481 xd->rxqueue = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
482 xd->rxlen = 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
483 } else { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
484 *buffer = g_malloc(len); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
485 memcpy(*buffer, buf, len); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
486 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
487 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
488 return len; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
489 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
490 |
15822 | 491 static gssize yahoo_xfer_write(const guchar *buffer, size_t size, PurpleXfer *xfer) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
492 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
493 gssize len; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
494 struct yahoo_xfer_data *xd = purple_xfer_get_protocol_data(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
495 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
496 if (!xd) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
497 return -1; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
498 |
15822 | 499 if (purple_xfer_get_type(xfer) != PURPLE_XFER_SEND) { |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
500 return -1; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
501 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
502 |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
503 len = write(purple_xfer_get_fd(xfer), buffer, size); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
504 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
505 if (len == -1) { |
15822 | 506 if (purple_xfer_get_bytes_sent(xfer) >= purple_xfer_get_size(xfer)) |
507 purple_xfer_set_completed(xfer, TRUE); | |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
508 if ((errno != EAGAIN) && (errno != EINTR)) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
509 return -1; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
510 return 0; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
511 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
512 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
513 return len; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
514 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
515 |
15822 | 516 static void yahoo_xfer_cancel_send(PurpleXfer *xfer) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
517 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
518 struct yahoo_xfer_data *xfer_data; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
519 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
520 xfer_data = purple_xfer_get_protocol_data(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
521 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
522 if(purple_xfer_get_status(xfer) == PURPLE_XFER_STATUS_CANCEL_LOCAL && xfer_data->version == 15) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
523 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
524 PurpleConnection *gc; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
525 PurpleAccount *account; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
526 YahooData *yd; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
527 struct yahoo_packet *pkt; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
528 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
529 gc = xfer_data->gc; |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
530 yd = purple_connection_get_protocol_data(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
531 account = purple_connection_get_account(gc); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
532 if(xfer_data->xfer_idstring_for_relay) /* hack to see if file trans acc/info packet has been received */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
533 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
534 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_INFO_15, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
535 YAHOO_STATUS_DISCONNECTED, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
536 yd->session_id); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
537 yahoo_packet_hash(pkt, "sssi", |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
538 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
539 5, purple_xfer_get_remote_user(xfer), |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
540 265, xfer_data->xfer_peer_idstring, |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
541 66, -1); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
542 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
543 else |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
544 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
545 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_15, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
546 YAHOO_STATUS_AVAILABLE, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
547 yd->session_id); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
548 yahoo_packet_hash(pkt, "sssi", |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
549 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
550 5, purple_xfer_get_remote_user(xfer), |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
551 265, xfer_data->xfer_peer_idstring, |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
552 222, 2); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
553 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
554 yahoo_packet_send_and_free(pkt, yd); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
555 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
556 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
557 |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
558 if (xfer_data) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
559 yahoo_xfer_data_free(xfer_data); |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
560 purple_xfer_set_protocol_data(xfer, NULL); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
561 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
562 |
15822 | 563 static void yahoo_xfer_cancel_recv(PurpleXfer *xfer) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
564 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
565 struct yahoo_xfer_data *xfer_data; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
566 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
567 xfer_data = purple_xfer_get_protocol_data(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
568 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
569 if(purple_xfer_get_status(xfer) == PURPLE_XFER_STATUS_CANCEL_LOCAL && xfer_data->version == 15) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
570 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
571 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
572 PurpleConnection *gc; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
573 PurpleAccount *account; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
574 YahooData *yd; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
575 struct yahoo_packet *pkt; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
576 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
577 gc = xfer_data->gc; |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
578 yd = purple_connection_get_protocol_data(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
579 account = purple_connection_get_account(gc); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
580 if(!xfer_data->xfer_idstring_for_relay) /* hack to see if file trans acc/info packet has been received */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
581 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
582 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_15, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
583 YAHOO_STATUS_AVAILABLE, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
584 yd->session_id); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
585 yahoo_packet_hash(pkt, "sssi", |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
586 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
587 5, purple_xfer_get_remote_user(xfer), |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
588 265, xfer_data->xfer_peer_idstring, |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
589 222, 4); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
590 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
591 else |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
592 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
593 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_15, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
594 YAHOO_STATUS_DISCONNECTED, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
595 yd->session_id); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
596 yahoo_packet_hash(pkt, "sssi", |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
597 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
598 5, purple_xfer_get_remote_user(xfer), |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
599 265, xfer_data->xfer_peer_idstring, |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
600 66, -1); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
601 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
602 yahoo_packet_send_and_free(pkt, yd); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
603 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
604 |
22017
97d530d11cc0
Revert patch that added receive-only transfer support for Yahoo protocol
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
21803
diff
changeset
|
605 if (xfer_data) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
606 yahoo_xfer_data_free(xfer_data); |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
607 purple_xfer_set_protocol_data(xfer, NULL); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
608 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
609 |
26168
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
610 /* Send HTTP OK after receiving file */ |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
611 static void yahoo_p2p_ft_server_send_OK(PurpleXfer *xfer) |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
612 { |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
613 char *tx = NULL; |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
614 int written; |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
615 int fd = purple_xfer_get_fd(xfer); |
26168
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
616 |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
617 tx = "HTTP/1.1 200 OK\r\nContent-Length: 0\r\nContent-Type: application/octet-stream\r\nConnection: close\r\n\r\n"; |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
618 written = write(fd, tx, strlen(tx)); |
26168
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
619 |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
620 if (written < 0 && errno == EAGAIN) |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
621 written = 0; |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
622 else if (written <= 0) |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
623 purple_debug_info("yahoo", "p2p filetransfer: Unable to write HTTP OK"); |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
624 |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
625 /* close connection */ |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
626 close(fd); |
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
627 purple_xfer_set_fd(xfer, -1); |
26168
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
628 } |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
629 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
630 static void yahoo_xfer_end(PurpleXfer *xfer_old) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
631 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
632 struct yahoo_xfer_data *xfer_data; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
633 PurpleXfer *xfer = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
634 PurpleConnection *gc; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
635 YahooData *yd; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
636 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
637 xfer_data = purple_xfer_get_protocol_data(xfer_old); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
638 if(xfer_data && xfer_data->version == 15 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
639 && purple_xfer_get_type(xfer_old) == PURPLE_XFER_RECEIVE |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
640 && xfer_data->filename_list) { |
26168
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
641 |
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
642 /* Send HTTP OK in case of p2p transfer, when we act as server */ |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
643 if((xfer_data->xfer_url != NULL) && (purple_xfer_get_fd(xfer_old) >=0) && (purple_xfer_get_status(xfer_old) == PURPLE_XFER_STATUS_DONE)) |
26168
1520b67d792f
When acting as a p2p server, send HTTP OK after receiving file.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26155
diff
changeset
|
644 yahoo_p2p_ft_server_send_OK(xfer_old); |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
645 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
646 /* removing top of filename & size list completely */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
647 g_free( xfer_data->filename_list->data ); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
648 g_free( xfer_data->size_list->data ); |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
649 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
650 xfer_data->filename_list->data = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
651 xfer_data->size_list->data = NULL; |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
652 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
653 xfer_data->filename_list = g_slist_delete_link(xfer_data->filename_list, xfer_data->filename_list); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
654 xfer_data->size_list = g_slist_delete_link(xfer_data->size_list, xfer_data->size_list); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
655 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
656 /* if there are still more files */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
657 if(xfer_data->filename_list) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
658 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
659 gchar* filename; |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
660 goffset filesize; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
661 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
662 filename = xfer_data->filename_list->data; |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
663 filesize = g_ascii_strtoll( xfer_data->size_list->data, NULL, 10 ); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
664 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
665 gc = xfer_data->gc; |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
666 yd = purple_connection_get_protocol_data(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
667 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
668 /* setting up xfer_data for next file's tranfer */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
669 g_free(xfer_data->host); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
670 g_free(xfer_data->path); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
671 g_free(xfer_data->txbuf); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
672 g_free(xfer_data->rxqueue); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
673 g_free(xfer_data->xfer_idstring_for_relay); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
674 if (xfer_data->tx_handler) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
675 purple_input_remove(xfer_data->tx_handler); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
676 xfer_data->host = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
677 xfer_data->host = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
678 xfer_data->port = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
679 xfer_data->expires = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
680 xfer_data->started = FALSE; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
681 xfer_data->txbuf = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
682 xfer_data->txbuflen = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
683 xfer_data->txbuf_written = 0; |
22022
eeba86c553be
Fix a couple compile warnings.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22020
diff
changeset
|
684 xfer_data->tx_handler = 0; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
685 xfer_data->rxqueue = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
686 xfer_data->rxlen = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
687 xfer_data->xfer_idstring_for_relay = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
688 xfer_data->info_val_249 = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
689 xfer_data->status_15 = STARTED; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
690 xfer_data->firstoflist = FALSE; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
691 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
692 /* Dereference xfer_data from old xfer */ |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
693 purple_xfer_set_protocol_data(xfer_old, NULL); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
694 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
695 /* Build the file transfer handle. */ |
32305
2ec94166be43
On the way to hiding the PurpleConnection struct.
andrew.victor@mxit.com
parents:
32295
diff
changeset
|
696 xfer = purple_xfer_new(purple_connection_get_account(gc), PURPLE_XFER_RECEIVE, purple_xfer_get_remote_user(xfer_old)); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
697 |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
698 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
699 if (xfer) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
700 /* Set the info about the incoming file. */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
701 char *utf8_filename = yahoo_string_decode(gc, filename, TRUE); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
702 purple_xfer_set_filename(xfer, utf8_filename); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
703 g_free(utf8_filename); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
704 purple_xfer_set_size(xfer, filesize); |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
705 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
706 purple_xfer_set_protocol_data(xfer, xfer_data); |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
707 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
708 /* Setup our I/O op functions */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
709 purple_xfer_set_init_fnc(xfer, yahoo_xfer_init_15); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
710 purple_xfer_set_start_fnc(xfer, yahoo_xfer_start); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
711 purple_xfer_set_end_fnc(xfer, yahoo_xfer_end); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
712 purple_xfer_set_cancel_send_fnc(xfer, yahoo_xfer_cancel_send); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
713 purple_xfer_set_cancel_recv_fnc(xfer, yahoo_xfer_cancel_recv); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
714 purple_xfer_set_read_fnc(xfer, yahoo_xfer_read); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
715 purple_xfer_set_write_fnc(xfer, yahoo_xfer_write); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
716 purple_xfer_set_request_denied_fnc(xfer,yahoo_xfer_cancel_recv); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
717 |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
718 /* update map to current xfer */ |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
719 g_hash_table_remove(yd->xfer_peer_idstring_map, xfer_data->xfer_peer_idstring); |
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
720 g_hash_table_insert(yd->xfer_peer_idstring_map, xfer_data->xfer_peer_idstring, xfer); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
721 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
722 /* Now perform the request */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
723 purple_xfer_request(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
724 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
725 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
726 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
727 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
728 if (xfer_data) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
729 yahoo_xfer_data_free(xfer_data); |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
730 purple_xfer_set_protocol_data(xfer_old, NULL); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
731 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
732 |
15822 | 733 void yahoo_process_p2pfilexfer(PurpleConnection *gc, struct yahoo_packet *pkt) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
734 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
735 GSList *l = pkt->hash; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
736 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
737 char *me = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
738 char *from = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
739 char *service = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
740 char *message = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
741 char *command = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
742 char *imv = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
743 char *unknown = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
744 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
745 /* Get all the necessary values from this new packet */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
746 while(l != NULL) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
747 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
748 struct yahoo_pair *pair = l->data; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
749 |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
750 switch(pair->key) { |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
751 case 5: /* Get who the packet is for */ |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
752 me = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
753 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
754 case 4: /* Get who the packet is from */ |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
755 from = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
756 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
757 case 49: /* Get the type of service */ |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
758 service = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
759 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
760 case 14: /* Get the 'message' of the packet */ |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
761 message = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
762 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
763 case 13: /* Get the command associated with this packet */ |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
764 command = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
765 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
766 case 63: /* IMVironment name and version */ |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
767 imv = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
768 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
769 case 64: /* Not sure, but it does vary with initialization of Doodle */ |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
770 unknown = pair->value; /* So, I'll keep it (for a little while atleast) */ |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
771 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
772 } |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
773 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
774 l = l->next; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
775 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
776 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
777 /* If this packet is an IMVIRONMENT, handle it accordingly */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
778 if(service != NULL && imv != NULL && !strcmp(service, "IMVIRONMENT")) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
779 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
780 /* Check for a Doodle packet and handle it accordingly */ |
18769
cddf062baa71
Fix yahoo doodling to work with newer yahoo messenger clients. This breaks doodling with older Pidgin clients (trying to support both looked too painful). Fixes #1445.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
18210
diff
changeset
|
781 if(strstr(imv, "doodle;") != NULL) |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
782 yahoo_doodle_process(gc, me, from, command, message, imv); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
783 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
784 /* If an IMVIRONMENT packet comes without a specific imviroment name */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
785 if(!strcmp(imv, ";0")) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
786 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
787 /* It is unfortunately time to close all IMVironments with the remote client */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
788 yahoo_doodle_command_got_shutdown(gc, from); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
789 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
790 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
791 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
792 |
15822 | 793 void yahoo_process_filetransfer(PurpleConnection *gc, struct yahoo_packet *pkt) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
794 { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
795 char *from = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
796 char *to = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
797 char *msg = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
798 char *url = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
799 char *imv = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
800 long expires = 0; |
15822 | 801 PurpleXfer *xfer; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
802 YahooData *yd; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
803 struct yahoo_xfer_data *xfer_data; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
804 char *service = NULL; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
805 char *filename = NULL; |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
806 goffset filesize = G_GOFFSET_CONSTANT(0); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
807 GSList *l; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
808 |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
809 yd = purple_connection_get_protocol_data(gc); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
810 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
811 for (l = pkt->hash; l; l = l->next) { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
812 struct yahoo_pair *pair = l->data; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
813 |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
814 switch (pair->key) { |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
815 case 4: |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
816 from = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
817 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
818 case 5: |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
819 to = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
820 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
821 case 14: |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
822 msg = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
823 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
824 case 20: |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
825 url = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
826 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
827 case 38: |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
828 expires = strtol(pair->value, NULL, 10); |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
829 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
830 case 27: |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
831 filename = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
832 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
833 case 28: |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
834 filesize = g_ascii_strtoll(pair->value, NULL, 10); |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
835 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
836 case 49: |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
837 service = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
838 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
839 case 63: |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
840 imv = pair->value; |
20254
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
841 break; |
f379a2e9e939
applied changes from 80e3a515775c28b61c4c155c4a524374ef3360ff
Richard Laager <rlaager@wiktel.com>
parents:
20208
diff
changeset
|
842 } |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
843 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
844 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
845 /* |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
846 * The remote user has changed their IMVironment. We |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
847 * record it for later use. |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
848 */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
849 if (from && imv && service && (strcmp("IMVIRONMENT", service) == 0)) { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
850 g_hash_table_replace(yd->imvironments, g_strdup(from), g_strdup(imv)); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
851 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
852 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
853 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
854 if (pkt->service == YAHOO_SERVICE_P2PFILEXFER) { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
855 if (service && (strcmp("FILEXFER", service) != 0)) { |
15822 | 856 purple_debug_misc("yahoo", "unhandled service 0x%02x\n", pkt->service); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
857 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
858 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
859 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
860 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
861 if (msg) { |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
862 char *tmp; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
863 tmp = strchr(msg, '\006'); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
864 if (tmp) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
865 *tmp = '\0'; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
866 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
867 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
868 if (!url || !from) |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
869 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
870 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
871 /* Setup the Yahoo-specific file transfer data */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
872 xfer_data = g_new0(struct yahoo_xfer_data, 1); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
873 xfer_data->gc = gc; |
15822 | 874 if (!purple_url_parse(url, &(xfer_data->host), &(xfer_data->port), &(xfer_data->path), NULL, NULL)) { |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
875 g_free(xfer_data); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
876 return; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
877 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
878 |
15822 | 879 purple_debug_misc("yahoo_filexfer", "Host is %s, port is %d, path is %s, and the full url was %s.\n", |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
880 xfer_data->host, xfer_data->port, xfer_data->path, url); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
881 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
882 /* Build the file transfer handle. */ |
32305
2ec94166be43
On the way to hiding the PurpleConnection struct.
andrew.victor@mxit.com
parents:
32295
diff
changeset
|
883 xfer = purple_xfer_new(purple_connection_get_account(gc), PURPLE_XFER_RECEIVE, from); |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
884 if (xfer == NULL) { |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
885 g_free(xfer_data); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
886 g_return_if_reached(); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
887 } |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
888 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
889 purple_xfer_set_protocol_data(xfer, xfer_data); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
890 |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
891 /* Set the info about the incoming file. */ |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
892 if (filename) { |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
893 char *utf8_filename = yahoo_string_decode(gc, filename, TRUE); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
894 purple_xfer_set_filename(xfer, utf8_filename); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
895 g_free(utf8_filename); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
896 } else { |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
897 gchar *start, *end; |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
898 start = g_strrstr(xfer_data->path, "/"); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
899 if (start) |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
900 start++; |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
901 end = g_strrstr(xfer_data->path, "?"); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
902 if (start && *start && end) { |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
903 char *utf8_filename; |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
904 filename = g_strndup(start, end - start); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
905 utf8_filename = yahoo_string_decode(gc, filename, TRUE); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
906 g_free(filename); |
15822 | 907 purple_xfer_set_filename(xfer, utf8_filename); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
908 g_free(utf8_filename); |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
909 filename = NULL; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
910 } |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
911 } |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
912 |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
913 purple_xfer_set_size(xfer, filesize); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
914 |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
915 /* Setup our I/O op functions */ |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
916 purple_xfer_set_init_fnc(xfer, yahoo_xfer_init); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
917 purple_xfer_set_start_fnc(xfer, yahoo_xfer_start); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
918 purple_xfer_set_end_fnc(xfer, yahoo_xfer_end); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
919 purple_xfer_set_cancel_send_fnc(xfer, yahoo_xfer_cancel_send); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
920 purple_xfer_set_cancel_recv_fnc(xfer, yahoo_xfer_cancel_recv); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
921 purple_xfer_set_read_fnc(xfer, yahoo_xfer_read); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
922 purple_xfer_set_write_fnc(xfer, yahoo_xfer_write); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
923 |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
924 /* Now perform the request */ |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
925 purple_xfer_request(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
926 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
927 |
15822 | 928 PurpleXfer *yahoo_new_xfer(PurpleConnection *gc, const char *who) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
929 { |
15822 | 930 PurpleXfer *xfer; |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
931 struct yahoo_xfer_data *xfer_data; |
18769
cddf062baa71
Fix yahoo doodling to work with newer yahoo messenger clients. This breaks doodling with older Pidgin clients (trying to support both looked too painful). Fixes #1445.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
18210
diff
changeset
|
932 |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
933 g_return_val_if_fail(who != NULL, NULL); |
18769
cddf062baa71
Fix yahoo doodling to work with newer yahoo messenger clients. This breaks doodling with older Pidgin clients (trying to support both looked too painful). Fixes #1445.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
18210
diff
changeset
|
934 |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
935 xfer_data = g_new0(struct yahoo_xfer_data, 1); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
936 xfer_data->gc = gc; |
18769
cddf062baa71
Fix yahoo doodling to work with newer yahoo messenger clients. This breaks doodling with older Pidgin clients (trying to support both looked too painful). Fixes #1445.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
18210
diff
changeset
|
937 |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
938 /* Build the file transfer handle. */ |
32305
2ec94166be43
On the way to hiding the PurpleConnection struct.
andrew.victor@mxit.com
parents:
32295
diff
changeset
|
939 xfer = purple_xfer_new(purple_connection_get_account(gc), PURPLE_XFER_SEND, who); |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
940 if (xfer == NULL) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
941 { |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
942 g_free(xfer_data); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
943 g_return_val_if_reached(NULL); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
944 } |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
945 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
946 purple_xfer_set_protocol_data(xfer, xfer_data); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
947 |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
948 /* Setup our I/O op functions */ |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
949 purple_xfer_set_init_fnc(xfer, yahoo_xfer_init); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
950 purple_xfer_set_start_fnc(xfer, yahoo_xfer_start); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
951 purple_xfer_set_end_fnc(xfer, yahoo_xfer_end); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
952 purple_xfer_set_cancel_send_fnc(xfer, yahoo_xfer_cancel_send); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
953 purple_xfer_set_cancel_recv_fnc(xfer, yahoo_xfer_cancel_recv); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
954 purple_xfer_set_read_fnc(xfer, yahoo_xfer_read); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
955 purple_xfer_set_write_fnc(xfer, yahoo_xfer_write); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
956 |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
957 return xfer; |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
958 } |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
959 |
22201
393c639dd021
Kill this warning when using -Wstrict-prototypes:
Stu Tomlinson <stu@nosnilmot.com>
parents:
22022
diff
changeset
|
960 static gchar* yahoo_xfer_new_xfer_id(void) |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
961 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
962 gchar *ans; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
963 int i,j; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
964 ans = g_strnfill(24, ' '); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
965 ans[23] = '$'; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
966 ans[22] = '$'; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
967 for(i = 0; i < 22; i++) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
968 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
969 j = g_random_int_range (0,61); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
970 if(j < 26) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
971 ans[i] = j + 'a'; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
972 else if(j < 52) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
973 ans[i] = j - 26 + 'A'; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
974 else |
22201
393c639dd021
Kill this warning when using -Wstrict-prototypes:
Stu Tomlinson <stu@nosnilmot.com>
parents:
22022
diff
changeset
|
975 ans[i] = j - 52 + '0'; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
976 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
977 return ans; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
978 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
979 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
980 static void yahoo_xfer_dns_connected_15(GSList *hosts, gpointer data, const char *error_message) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
981 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
982 PurpleXfer *xfer; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
983 struct yahoo_xfer_data *xd; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
984 struct sockaddr_in *addr; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
985 struct yahoo_packet *pkt; |
30217
d0b0f0d17046
Fix Yahoo file transfers that get stuck saying \"Waiting for transfer to
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29229
diff
changeset
|
986 unsigned long actaddr; |
d0b0f0d17046
Fix Yahoo file transfers that get stuck saying \"Waiting for transfer to
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29229
diff
changeset
|
987 unsigned char a,b,c,d; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
988 PurpleConnection *gc; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
989 PurpleAccount *account; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
990 YahooData *yd; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
991 gchar *url; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
992 gchar *filename; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
993 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
994 if (!(xfer = data)) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
995 return; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
996 if (!(xd = purple_xfer_get_protocol_data(xfer))) |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
997 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
998 gc = xd->gc; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
999 account = purple_connection_get_account(gc); |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
1000 yd = purple_connection_get_protocol_data(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1001 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1002 if(!hosts) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1003 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1004 purple_debug_error("yahoo", "Unable to find an IP address for relay.msg.yahoo.com\n"); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1005 purple_xfer_cancel_remote(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1006 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1007 } |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1008 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1009 /* Discard the length... */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1010 hosts = g_slist_remove(hosts, hosts->data); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1011 if(!hosts) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1012 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1013 purple_debug_error("yahoo", "Unable to find an IP address for relay.msg.yahoo.com\n"); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1014 purple_xfer_cancel_remote(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1015 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1016 } |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1017 |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1018 /* TODO:actually, u must try with addr no.1 , if its not working addr no.2 ..... */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1019 addr = hosts->data; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1020 actaddr = addr->sin_addr.s_addr; |
30217
d0b0f0d17046
Fix Yahoo file transfers that get stuck saying \"Waiting for transfer to
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29229
diff
changeset
|
1021 d = actaddr & 0xff; |
d0b0f0d17046
Fix Yahoo file transfers that get stuck saying \"Waiting for transfer to
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29229
diff
changeset
|
1022 actaddr >>= 8; |
d0b0f0d17046
Fix Yahoo file transfers that get stuck saying \"Waiting for transfer to
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29229
diff
changeset
|
1023 c = actaddr & 0xff; |
d0b0f0d17046
Fix Yahoo file transfers that get stuck saying \"Waiting for transfer to
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29229
diff
changeset
|
1024 actaddr >>= 8; |
d0b0f0d17046
Fix Yahoo file transfers that get stuck saying \"Waiting for transfer to
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29229
diff
changeset
|
1025 b = actaddr & 0xff; |
d0b0f0d17046
Fix Yahoo file transfers that get stuck saying \"Waiting for transfer to
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29229
diff
changeset
|
1026 actaddr >>= 8; |
d0b0f0d17046
Fix Yahoo file transfers that get stuck saying \"Waiting for transfer to
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29229
diff
changeset
|
1027 a = actaddr & 0xff; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1028 if(yd->jp) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1029 xd->port = YAHOOJP_XFER_RELAY_PORT; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1030 else |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1031 xd->port = YAHOO_XFER_RELAY_PORT; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1032 |
30217
d0b0f0d17046
Fix Yahoo file transfers that get stuck saying \"Waiting for transfer to
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
29229
diff
changeset
|
1033 url = g_strdup_printf("%u.%u.%u.%u", d, c, b, a); |
26552
4bac03b3c0fd
Free the DNS query data before purple_url_parse() to avoid leaking on failure.
Paul Aurich <paul@darkrain42.org>
parents:
26545
diff
changeset
|
1034 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1035 /* Free the address... */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1036 g_free(hosts->data); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1037 hosts = g_slist_remove(hosts, hosts->data); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1038 addr = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1039 while (hosts != NULL) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1040 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1041 /* Discard the length... */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1042 hosts = g_slist_remove(hosts, hosts->data); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1043 /* Free the address... */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1044 g_free(hosts->data); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1045 hosts = g_slist_remove(hosts, hosts->data); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1046 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1047 |
26552
4bac03b3c0fd
Free the DNS query data before purple_url_parse() to avoid leaking on failure.
Paul Aurich <paul@darkrain42.org>
parents:
26545
diff
changeset
|
1048 if (!purple_url_parse(url, &(xd->host), &(xd->port), &(xd->path), NULL, NULL)) { |
4bac03b3c0fd
Free the DNS query data before purple_url_parse() to avoid leaking on failure.
Paul Aurich <paul@darkrain42.org>
parents:
26545
diff
changeset
|
1049 purple_xfer_cancel_remote(xfer); |
4bac03b3c0fd
Free the DNS query data before purple_url_parse() to avoid leaking on failure.
Paul Aurich <paul@darkrain42.org>
parents:
26545
diff
changeset
|
1050 g_free(url); |
4bac03b3c0fd
Free the DNS query data before purple_url_parse() to avoid leaking on failure.
Paul Aurich <paul@darkrain42.org>
parents:
26545
diff
changeset
|
1051 return; |
4bac03b3c0fd
Free the DNS query data before purple_url_parse() to avoid leaking on failure.
Paul Aurich <paul@darkrain42.org>
parents:
26545
diff
changeset
|
1052 } |
4bac03b3c0fd
Free the DNS query data before purple_url_parse() to avoid leaking on failure.
Paul Aurich <paul@darkrain42.org>
parents:
26545
diff
changeset
|
1053 g_free(url); |
4bac03b3c0fd
Free the DNS query data before purple_url_parse() to avoid leaking on failure.
Paul Aurich <paul@darkrain42.org>
parents:
26545
diff
changeset
|
1054 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1055 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_INFO_15, YAHOO_STATUS_AVAILABLE, yd->session_id); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1056 filename = g_path_get_basename(purple_xfer_get_local_filename(xfer)); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1057 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1058 yahoo_packet_hash(pkt, "ssssis", |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1059 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1060 5, purple_xfer_get_remote_user(xfer), |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1061 265, xd->xfer_peer_idstring, |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1062 27, filename, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1063 249, 3, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1064 250, xd->host); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1065 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1066 g_free(filename); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1067 yahoo_packet_send_and_free(pkt, yd); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1068 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1069 |
28463
7b88cc6c3f7a
Cannot send a file to a federated user on yahoo.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
28297
diff
changeset
|
1070 gboolean yahoo_can_receive_file(PurpleConnection *gc, const char *who) |
7b88cc6c3f7a
Cannot send a file to a federated user on yahoo.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
28297
diff
changeset
|
1071 { |
7b88cc6c3f7a
Cannot send a file to a federated user on yahoo.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
28297
diff
changeset
|
1072 if (!who || yahoo_get_federation_from_name(who) != YAHOO_FEDERATION_NONE) |
7b88cc6c3f7a
Cannot send a file to a federated user on yahoo.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
28297
diff
changeset
|
1073 return FALSE; |
7b88cc6c3f7a
Cannot send a file to a federated user on yahoo.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
28297
diff
changeset
|
1074 return TRUE; |
7b88cc6c3f7a
Cannot send a file to a federated user on yahoo.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
28297
diff
changeset
|
1075 } |
7b88cc6c3f7a
Cannot send a file to a federated user on yahoo.
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
28297
diff
changeset
|
1076 |
15822 | 1077 void yahoo_send_file(PurpleConnection *gc, const char *who, const char *file) |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1078 { |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1079 struct yahoo_xfer_data *xfer_data; |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
1080 YahooData *yd = purple_connection_get_protocol_data(gc); |
15822 | 1081 PurpleXfer *xfer = yahoo_new_xfer(gc, who); |
22271
cc5b2a145652
Simplified version of the newest patch on #4533 to not try Yahoo protocol
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22201
diff
changeset
|
1082 |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1083 g_return_if_fail(xfer != NULL); |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1084 |
26145
abf830f6cd43
When sending a file, if there isn't a p2p connection, try establishing it.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26138
diff
changeset
|
1085 /* if we don't have a p2p connection, try establishing it now */ |
abf830f6cd43
When sending a file, if there isn't a p2p connection, try establishing it.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26138
diff
changeset
|
1086 if( !g_hash_table_lookup(yd->peers, who) ) |
abf830f6cd43
When sending a file, if there isn't a p2p connection, try establishing it.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26138
diff
changeset
|
1087 yahoo_send_p2p_pkt(gc, who, 0); |
abf830f6cd43
When sending a file, if there isn't a p2p connection, try establishing it.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26138
diff
changeset
|
1088 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1089 xfer_data = purple_xfer_get_protocol_data(xfer); |
26137
51bdaa82b95d
Remove check of version for file transfer, use only version 15 file transfer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25073
diff
changeset
|
1090 xfer_data->status_15 = STARTED; |
51bdaa82b95d
Remove check of version for file transfer, use only version 15 file transfer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25073
diff
changeset
|
1091 purple_xfer_set_init_fnc(xfer, yahoo_xfer_init_15); |
51bdaa82b95d
Remove check of version for file transfer, use only version 15 file transfer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25073
diff
changeset
|
1092 xfer_data->version = 15; |
51bdaa82b95d
Remove check of version for file transfer, use only version 15 file transfer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25073
diff
changeset
|
1093 xfer_data->xfer_peer_idstring = yahoo_xfer_new_xfer_id(); |
51bdaa82b95d
Remove check of version for file transfer, use only version 15 file transfer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25073
diff
changeset
|
1094 g_hash_table_insert(yd->xfer_peer_idstring_map, xfer_data->xfer_peer_idstring, xfer); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1095 |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1096 /* Now perform the request */ |
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1097 if (file) |
15822 | 1098 purple_xfer_request_accepted(xfer, file); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1099 else |
15822 | 1100 purple_xfer_request(xfer); |
15373
5fe8042783c1
Rename gtk/ and libgaim/ to pidgin/ and libpurple/
Sean Egan <seanegan@gmail.com>
parents:
diff
changeset
|
1101 } |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1102 |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1103 static void yahoo_p2p_ft_server_listen_cb(int listenfd, gpointer data); /* using this in yahoo_xfer_send_cb_15 */ |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1104 static void yahoo_xfer_connected_15(gpointer data, gint source, const gchar *error_message);/* using this in recv_cb */ |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1105 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1106 static void yahoo_xfer_recv_cb_15(gpointer data, gint source, PurpleInputCondition condition) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1107 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1108 PurpleXfer *xfer; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1109 struct yahoo_xfer_data *xd; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1110 int did; |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1111 guchar buf[1000]; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1112 PurpleAccount *account; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1113 PurpleConnection *gc; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1114 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1115 xfer = data; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1116 xd = purple_xfer_get_protocol_data(xfer); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1117 account = purple_connection_get_account(xd->gc); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1118 gc = xd->gc; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1119 |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1120 while((did = read(source, buf, sizeof(buf))) > 0) |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1121 { |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1122 /* TODO: Convert to circ buffer, this all is pretty horrible */ |
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1123 xd->txbuf = g_realloc(xd->txbuf, xd->txbuflen + did); |
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1124 g_memmove(xd->txbuf + xd->txbuflen, buf, did); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1125 xd->txbuflen += did; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1126 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1127 |
27119
d078048fb03a
Pass the gc as the handle in a bunch of calls to purple_proxy_connect
Mark Doliner <mark@kingant.net>
parents:
27111
diff
changeset
|
1128 if (did < 0 && errno == EAGAIN) |
d078048fb03a
Pass the gc as the handle in a bunch of calls to purple_proxy_connect
Mark Doliner <mark@kingant.net>
parents:
27111
diff
changeset
|
1129 return; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1130 else if (did < 0) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1131 purple_debug_error("yahoo", "Unable to write in order to start ft errno = %d\n", errno); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1132 purple_xfer_cancel_remote(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1133 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1134 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1135 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1136 purple_input_remove(xd->tx_handler); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1137 xd->tx_handler = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1138 xd->txbuflen = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1139 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1140 if(xd->status_15 == HEAD_REQUESTED) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1141 xd->status_15 = HEAD_REPLY_RECEIVED; |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1142 close(source);/* Is this required? */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1143 g_free(xd->txbuf); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1144 xd->txbuf = NULL; |
27119
d078048fb03a
Pass the gc as the handle in a bunch of calls to purple_proxy_connect
Mark Doliner <mark@kingant.net>
parents:
27111
diff
changeset
|
1145 if (purple_proxy_connect(gc, account, xd->host, xd->port, yahoo_xfer_connected_15, xfer) == NULL) |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1146 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1147 purple_notify_error(gc, NULL, _("File Transfer Failed"), |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1148 _("Unable to establish file descriptor.")); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1149 purple_xfer_cancel_remote(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1150 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1151 } else { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1152 purple_debug_error("yahoo","Unrecognized yahoo file transfer mode and stage (ymsg15):%d,%d\n", |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1153 purple_xfer_get_type(xfer), |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1154 xd->status_15); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1155 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1156 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1157 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1158 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1159 static void yahoo_xfer_send_cb_15(gpointer data, gint source, PurpleInputCondition condition) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1160 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1161 PurpleXfer *xfer; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1162 struct yahoo_xfer_data *xd; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1163 int remaining, written; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1164 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1165 xfer = data; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1166 xd = purple_xfer_get_protocol_data(xfer); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1167 remaining = xd->txbuflen - xd->txbuf_written; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1168 written = write(source, xd->txbuf + xd->txbuf_written, remaining); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1169 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1170 if (written < 0 && errno == EAGAIN) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1171 written = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1172 else if (written <= 0) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1173 purple_debug_error("yahoo", "Unable to write in order to start ft errno = %d\n", errno); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1174 purple_xfer_cancel_remote(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1175 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1176 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1177 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1178 if (written < remaining) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1179 xd->txbuf_written += written; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1180 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1181 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1182 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1183 purple_input_remove(xd->tx_handler); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1184 xd->tx_handler = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1185 g_free(xd->txbuf); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1186 xd->txbuf = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1187 xd->txbuflen = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1188 xd->txbuf_written = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1189 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1190 if(purple_xfer_get_type(xfer) == PURPLE_XFER_RECEIVE && xd->status_15 == STARTED) |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1191 { |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1192 xd->status_15 = HEAD_REQUESTED; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1193 xd->tx_handler = purple_input_add(source, PURPLE_INPUT_READ, yahoo_xfer_recv_cb_15, xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1194 yahoo_xfer_recv_cb_15(xfer, source, PURPLE_INPUT_READ); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1195 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1196 else if(purple_xfer_get_type(xfer) == PURPLE_XFER_RECEIVE && xd->status_15 == HEAD_REPLY_RECEIVED) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1197 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1198 xd->status_15 = TRANSFER_PHASE; |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
1199 purple_xfer_set_fd(xfer, source); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1200 purple_xfer_start(xfer, source, NULL, 0); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1201 } |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1202 else if(purple_xfer_get_type(xfer) == PURPLE_XFER_SEND && (xd->status_15 == ACCEPTED || xd->status_15 == P2P_GET_REQUESTED) ) |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1203 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1204 xd->status_15 = TRANSFER_PHASE; |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
1205 purple_xfer_set_fd(xfer, source); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1206 /* Remove Read event */ |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1207 purple_input_remove(xd->input_event); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1208 xd->input_event = 0; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1209 purple_xfer_start(xfer, source, NULL, 0); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1210 } |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1211 else if(purple_xfer_get_type(xfer) == PURPLE_XFER_SEND && xd->status_15 == P2P_HEAD_REQUESTED) |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1212 { |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1213 xd->status_15 = P2P_HEAD_REPLIED; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1214 /* Remove Read event and close descriptor */ |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1215 purple_input_remove(xd->input_event); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1216 xd->input_event = 0; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1217 close(source); |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
1218 purple_xfer_set_fd(xfer, -1); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1219 /* start local server, listen for connections */ |
32216
d2ef8926b960
Remove deprecated purple_network_listen_map_external().
andrew.victor@mxit.com
parents:
32215
diff
changeset
|
1220 purple_network_listen(xd->yahoo_local_p2p_ft_server_port, AF_UNSPEC, SOCK_STREAM, TRUE, yahoo_p2p_ft_server_listen_cb, xfer); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1221 } |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1222 else |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1223 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1224 purple_debug_error("yahoo", "Unrecognized yahoo file transfer mode and stage (ymsg15):%d,%d\n", purple_xfer_get_type(xfer), xd->status_15); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1225 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1226 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1227 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1228 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1229 static void yahoo_xfer_connected_15(gpointer data, gint source, const gchar *error_message) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1230 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1231 PurpleXfer *xfer; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1232 struct yahoo_xfer_data *xd; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1233 PurpleAccount *account; |
30430
351d07aefb09
Kill off many dead assignments and any useless remaining variables.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
30217
diff
changeset
|
1234 PurpleConnection *gc; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1235 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1236 if (!(xfer = data)) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1237 return; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1238 if (!(xd = purple_xfer_get_protocol_data(xfer))) |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1239 return; |
30430
351d07aefb09
Kill off many dead assignments and any useless remaining variables.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
30217
diff
changeset
|
1240 gc = xd->gc; |
351d07aefb09
Kill off many dead assignments and any useless remaining variables.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
30217
diff
changeset
|
1241 account = purple_connection_get_account(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1242 if ((source < 0) || (xd->path == NULL) || (xd->host == NULL)) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1243 purple_xfer_error(PURPLE_XFER_RECEIVE, purple_xfer_get_account(xfer), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1244 purple_xfer_get_remote_user(xfer), _("Unable to connect.")); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1245 purple_xfer_cancel_remote(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1246 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1247 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1248 /* The first time we get here, assemble the tx buffer */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1249 if (xd->txbuflen == 0) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1250 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1251 gchar* cookies; |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1252 gchar* initial_buffer; |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
1253 YahooData *yd = purple_connection_get_protocol_data(gc); |
30541
fc961dfd4122
Fix file transfers. yahoo_get_cookies() doesn't seem to be working. As a
sulabh@pidgin.im
parents:
30430
diff
changeset
|
1254 |
fc961dfd4122
Fix file transfers. yahoo_get_cookies() doesn't seem to be working. As a
sulabh@pidgin.im
parents:
30430
diff
changeset
|
1255 /* cookies = yahoo_get_cookies(gc); |
fc961dfd4122
Fix file transfers. yahoo_get_cookies() doesn't seem to be working. As a
sulabh@pidgin.im
parents:
30430
diff
changeset
|
1256 * This doesn't seem to be working. The function is returning NULL, which yahoo servers don't like |
fc961dfd4122
Fix file transfers. yahoo_get_cookies() doesn't seem to be working. As a
sulabh@pidgin.im
parents:
30430
diff
changeset
|
1257 * For now let us not use this function */ |
fc961dfd4122
Fix file transfers. yahoo_get_cookies() doesn't seem to be working. As a
sulabh@pidgin.im
parents:
30430
diff
changeset
|
1258 |
fc961dfd4122
Fix file transfers. yahoo_get_cookies() doesn't seem to be working. As a
sulabh@pidgin.im
parents:
30430
diff
changeset
|
1259 cookies = g_strdup_printf("Y=%s; T=%s", yd->cookie_y, yd->cookie_t); |
fc961dfd4122
Fix file transfers. yahoo_get_cookies() doesn't seem to be working. As a
sulabh@pidgin.im
parents:
30430
diff
changeset
|
1260 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1261 if(purple_xfer_get_type(xfer) == PURPLE_XFER_SEND && xd->status_15 == ACCEPTED) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1262 { |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1263 if(xd->info_val_249 == 2) |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1264 { |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1265 /* sending file via p2p, we are connected as client */ |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1266 initial_buffer = g_strdup_printf("POST /%s HTTP/1.1\r\n" |
26827
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1267 "User-Agent: " YAHOO_CLIENT_USERAGENT "\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1268 "Host: %s\r\n" |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
1269 "Content-Length: %" G_GOFFSET_FORMAT "\r\n" |
26827
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1270 "Cache-Control: no-cache\r\n\r\n", |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1271 xd->path, |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1272 xd->host, |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1273 purple_xfer_get_size(xfer)); /* to do, add Referer */ |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1274 } |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1275 else |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1276 { |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1277 /* sending file via relaying */ |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1278 initial_buffer = g_strdup_printf("POST /relay?token=%s&sender=%s&recver=%s HTTP/1.1\r\n" |
26827
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1279 "Cookie:%s\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1280 "User-Agent: " YAHOO_CLIENT_USERAGENT "\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1281 "Host: %s\r\n" |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
1282 "Content-Length: %" G_GOFFSET_FORMAT "\r\n" |
26827
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1283 "Cache-Control: no-cache\r\n\r\n", |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1284 purple_url_encode(xd->xfer_idstring_for_relay), |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1285 purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1286 purple_xfer_get_remote_user(xfer), |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1287 cookies, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1288 xd->host, |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1289 purple_xfer_get_size(xfer)); /* to do, add Referer */ |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1290 } |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1291 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1292 else if(purple_xfer_get_type(xfer) == PURPLE_XFER_RECEIVE && xd->status_15 == STARTED) |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1293 { |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1294 if(xd->info_val_249 == 1) |
25013
ef47df3e5dd4
Yahoo P2P File Transfer RECEIVE only support added.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
22818
diff
changeset
|
1295 { |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1296 /* receiving file via p2p, connected as client */ |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1297 initial_buffer = g_strdup_printf("HEAD /%s HTTP/1.1\r\n" |
26827
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1298 "Accept: */*\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1299 "User-Agent: " YAHOO_CLIENT_USERAGENT "\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1300 "Host: %s\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1301 "Content-Length: 0\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1302 "Cache-Control: no-cache\r\n\r\n", |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1303 xd->path,xd->host); |
25013
ef47df3e5dd4
Yahoo P2P File Transfer RECEIVE only support added.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
22818
diff
changeset
|
1304 } |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1305 else |
25013
ef47df3e5dd4
Yahoo P2P File Transfer RECEIVE only support added.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
22818
diff
changeset
|
1306 { |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1307 /* receiving file via relaying */ |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1308 initial_buffer = g_strdup_printf("HEAD /relay?token=%s&sender=%s&recver=%s HTTP/1.1\r\n" |
26827
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1309 "Accept: */*\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1310 "Cookie: %s\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1311 "User-Agent: " YAHOO_CLIENT_USERAGENT "\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1312 "Host: %s\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1313 "Content-Length: 0\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1314 "Cache-Control: no-cache\r\n\r\n", |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1315 purple_url_encode(xd->xfer_idstring_for_relay), |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1316 purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1317 purple_xfer_get_remote_user(xfer), |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1318 cookies, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1319 xd->host); |
25013
ef47df3e5dd4
Yahoo P2P File Transfer RECEIVE only support added.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
22818
diff
changeset
|
1320 } |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1321 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1322 else if(purple_xfer_get_type(xfer) == PURPLE_XFER_RECEIVE && xd->status_15 == HEAD_REPLY_RECEIVED) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1323 { |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1324 if(xd->info_val_249 == 1) |
25013
ef47df3e5dd4
Yahoo P2P File Transfer RECEIVE only support added.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
22818
diff
changeset
|
1325 { |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1326 /* receiving file via p2p, connected as client */ |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1327 initial_buffer = g_strdup_printf("GET /%s HTTP/1.1\r\n" |
26827
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1328 "User-Agent: " YAHOO_CLIENT_USERAGENT "\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1329 "Host: %s\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1330 "Connection: Keep-Alive\r\n\r\n", |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1331 xd->path, xd->host); |
25013
ef47df3e5dd4
Yahoo P2P File Transfer RECEIVE only support added.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
22818
diff
changeset
|
1332 } |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1333 else |
25013
ef47df3e5dd4
Yahoo P2P File Transfer RECEIVE only support added.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
22818
diff
changeset
|
1334 { |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1335 /* receiving file via relaying */ |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1336 initial_buffer = g_strdup_printf("GET /relay?token=%s&sender=%s&recver=%s HTTP/1.1\r\n" |
26827
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1337 "Cookie: %s\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1338 "User-Agent: " YAHOO_CLIENT_USERAGENT "\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1339 "Host: %s\r\n" |
fac90dbe196d
Various minor cleanups. The majority of this is the #define for the useragent.
Paul Aurich <paul@darkrain42.org>
parents:
26552
diff
changeset
|
1340 "Connection: Keep-Alive\r\n\r\n", |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1341 purple_url_encode(xd->xfer_idstring_for_relay), |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1342 purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1343 purple_xfer_get_remote_user(xfer), |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1344 cookies, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1345 xd->host); |
25013
ef47df3e5dd4
Yahoo P2P File Transfer RECEIVE only support added.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
22818
diff
changeset
|
1346 } |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1347 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1348 else |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1349 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1350 purple_debug_error("yahoo", "Unrecognized yahoo file transfer mode and stage (ymsg15):%d,%d\n", purple_xfer_get_type(xfer), xd->status_15); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1351 g_free(cookies); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1352 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1353 } |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1354 xd->txbuf = (guchar*) initial_buffer; |
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1355 xd->txbuflen = strlen(initial_buffer); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1356 xd->txbuf_written = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1357 g_free(cookies); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1358 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1359 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1360 if (!xd->tx_handler) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1361 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1362 xd->tx_handler = purple_input_add(source, PURPLE_INPUT_WRITE, |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1363 yahoo_xfer_send_cb_15, xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1364 yahoo_xfer_send_cb_15(xfer, source, PURPLE_INPUT_WRITE); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1365 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1366 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1367 |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1368 static void yahoo_p2p_ft_POST_cb(gpointer data, gint source, PurpleInputCondition cond) |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1369 { |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1370 PurpleXfer *xfer; |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1371 struct yahoo_xfer_data *xd; |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1372 |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1373 xfer = data; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1374 if (!(xd = purple_xfer_get_protocol_data(xfer))) { |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1375 purple_xfer_cancel_remote(xfer); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1376 return; |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1377 } |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1378 |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1379 purple_input_remove(xd->input_event); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1380 xd->status_15 = TRANSFER_PHASE; |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
1381 purple_xfer_set_fd(xfer, source); |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1382 purple_xfer_start(xfer, source, NULL, 0); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1383 } |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1384 |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1385 static void yahoo_p2p_ft_HEAD_GET_cb(gpointer data, gint source, PurpleInputCondition cond) |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1386 { |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1387 PurpleXfer *xfer; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1388 struct yahoo_xfer_data *xd; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1389 guchar buf[1024]; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1390 int len; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1391 char *url_head; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1392 char *url_get; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1393 time_t unix_time; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1394 char *time_str; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1395 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1396 xfer = data; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1397 if (!(xd = purple_xfer_get_protocol_data(xfer))) { |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1398 purple_xfer_cancel_remote(xfer); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1399 return; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1400 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1401 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1402 len = read(source, buf, sizeof(buf)); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1403 if ((len < 0) && ((errno == EAGAIN) || (errno == EWOULDBLOCK))) |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1404 return ; /* No Worries*/ |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1405 else if (len <= 0) { |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1406 purple_debug_warning("yahoo","p2p-ft: Error in connection, or host disconnected\n"); |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1407 purple_input_remove(xd->input_event); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1408 purple_xfer_cancel_remote(xfer); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1409 return; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1410 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1411 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1412 url_head = g_strdup_printf("HEAD %s", xd->xfer_url); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1413 url_get = g_strdup_printf("GET %s", xd->xfer_url); |
25065
d96190de653a
Add + in place of spaces in p2p url, fixes transfer of file with name containing spaces
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25064
diff
changeset
|
1414 |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1415 if( strncmp(url_head, (char *)buf, strlen(url_head)) == 0 ) |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1416 xd->status_15 = P2P_HEAD_REQUESTED; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1417 else if( strncmp(url_get, (char *)buf, strlen(url_get)) == 0 ) |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1418 xd->status_15 = P2P_GET_REQUESTED; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1419 else { |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1420 purple_debug_warning("yahoo","p2p-ft: Wrong HEAD/GET request from peer, disconnecting host\n"); |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1421 purple_input_remove(xd->input_event); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1422 purple_xfer_cancel_remote(xfer); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1423 g_free(url_head); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1424 return; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1425 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1426 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1427 unix_time = time(NULL); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1428 time_str = ctime(&unix_time); |
31788
f70353405940
Fix truncation of a string in the Yahoo! prpl to be not quite so stupid.
Ethan Blanton <elb@pidgin.im>
parents:
31481
diff
changeset
|
1429 time_str[strlen(time_str) - 1] = '\0'; |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1430 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1431 if (xd->txbuflen == 0) { |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1432 gchar *initial_buffer = g_strdup_printf("HTTP/1.0 200 OK\r\n" |
26544
430298a61512
Reformat a printf so the HTTP headers are easier to read
Paul Aurich <paul@darkrain42.org>
parents:
26168
diff
changeset
|
1433 "Date: %s GMT\r\n" |
430298a61512
Reformat a printf so the HTTP headers are easier to read
Paul Aurich <paul@darkrain42.org>
parents:
26168
diff
changeset
|
1434 "Server: Y!/1.0\r\n" |
430298a61512
Reformat a printf so the HTTP headers are easier to read
Paul Aurich <paul@darkrain42.org>
parents:
26168
diff
changeset
|
1435 "MIME-version: 1.0\r\n" |
430298a61512
Reformat a printf so the HTTP headers are easier to read
Paul Aurich <paul@darkrain42.org>
parents:
26168
diff
changeset
|
1436 "Last-modified: %s GMT\r\n" |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
1437 "Content-length: %" G_GOFFSET_FORMAT "\r\n\r\n", |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1438 time_str, time_str, purple_xfer_get_size(xfer)); |
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1439 xd->txbuf = (guchar *)initial_buffer; |
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1440 xd->txbuflen = strlen(initial_buffer); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1441 xd->txbuf_written = 0; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1442 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1443 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1444 if (!xd->tx_handler) { |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1445 xd->tx_handler = purple_input_add(source, PURPLE_INPUT_WRITE, yahoo_xfer_send_cb_15, xfer); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1446 yahoo_xfer_send_cb_15(xfer, source, PURPLE_INPUT_WRITE); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1447 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1448 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1449 g_free(url_head); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1450 g_free(url_get); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1451 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1452 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1453 static void yahoo_p2p_ft_server_send_connected_cb(gpointer data, gint source, PurpleInputCondition cond) |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1454 { |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1455 int acceptfd; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1456 PurpleXfer *xfer; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1457 struct yahoo_xfer_data *xd; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1458 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1459 xfer = data; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1460 if (!(xd = purple_xfer_get_protocol_data(xfer))) { |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1461 purple_xfer_cancel_remote(xfer); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1462 return; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1463 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1464 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1465 acceptfd = accept(source, NULL, 0); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1466 if(acceptfd == -1 && (errno == EAGAIN || errno == EWOULDBLOCK)) |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1467 return; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1468 else if(acceptfd == -1) { |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1469 purple_debug_warning("yahoo","yahoo_p2p_server_send_connected_cb: accept: %s\n", g_strerror(errno)); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1470 purple_xfer_cancel_remote(xfer); |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1471 /* remove watcher and close p2p ft server */ |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1472 purple_input_remove(xd->yahoo_p2p_ft_server_watcher); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1473 close(xd->yahoo_local_p2p_ft_server_fd); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1474 return; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1475 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1476 |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1477 /* remove watcher and close p2p ft server */ |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1478 purple_input_remove(xd->yahoo_p2p_ft_server_watcher); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1479 close(xd->yahoo_local_p2p_ft_server_fd); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1480 |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1481 /* Add an Input Read event to the file descriptor */ |
32337
5bd5e024c977
Yahoo: Use file-transfer accessor functions.
andrew.victor@mxit.com
parents:
32305
diff
changeset
|
1482 purple_xfer_set_fd(xfer, acceptfd); |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1483 if(purple_xfer_get_type(xfer) == PURPLE_XFER_RECEIVE) |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1484 xd->input_event = purple_input_add(acceptfd, PURPLE_INPUT_READ, yahoo_p2p_ft_POST_cb, data); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1485 else |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1486 xd->input_event = purple_input_add(acceptfd, PURPLE_INPUT_READ, yahoo_p2p_ft_HEAD_GET_cb, data); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1487 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1488 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1489 static void yahoo_p2p_ft_server_listen_cb(int listenfd, gpointer data) |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1490 { |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1491 PurpleXfer *xfer; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1492 struct yahoo_xfer_data *xd; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1493 struct yahoo_packet *pkt; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1494 PurpleAccount *account; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
1495 YahooData *yd; |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1496 gchar *filename; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1497 const char *local_ip; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1498 gchar *url_to_send = NULL; |
25065
d96190de653a
Add + in place of spaces in p2p url, fixes transfer of file with name containing spaces
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25064
diff
changeset
|
1499 char *filename_without_spaces = NULL; |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1500 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1501 xfer = data; |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1502 if (!(xd = purple_xfer_get_protocol_data(xfer)) || (listenfd == -1)) { |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1503 purple_debug_warning("yahoo","p2p: error starting server for p2p file transfer\n"); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1504 purple_xfer_cancel_remote(xfer); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1505 return; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1506 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1507 |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1508 if( (purple_xfer_get_type(xfer) == PURPLE_XFER_RECEIVE) || (xd->status_15 != P2P_HEAD_REPLIED) ) { |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
1509 yd = purple_connection_get_protocol_data(xd->gc); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1510 account = purple_connection_get_account(xd->gc); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1511 local_ip = purple_network_get_my_ip(listenfd); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1512 xd->yahoo_local_p2p_ft_server_port = purple_network_get_port_from_fd(listenfd); |
25065
d96190de653a
Add + in place of spaces in p2p url, fixes transfer of file with name containing spaces
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25064
diff
changeset
|
1513 |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1514 filename = g_path_get_basename(purple_xfer_get_local_filename(xfer)); |
26138
9a5da524fba9
Use purple_util_chrreplace instead of g_strsplit then g_strjoinv
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26137
diff
changeset
|
1515 filename_without_spaces = g_strdup(filename); |
9a5da524fba9
Use purple_util_chrreplace instead of g_strsplit then g_strjoinv
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
26137
diff
changeset
|
1516 purple_util_chrreplace(filename_without_spaces, ' ', '+'); |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1517 xd->xfer_url = g_strdup_printf("/Messenger.%s.%d000%s?AppID=Messenger&UserID=%s&K=lc9lu2u89gz1llmplwksajkjx", purple_xfer_get_remote_user(xfer), (int)time(NULL), filename_without_spaces, purple_xfer_get_remote_user(xfer)); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1518 url_to_send = g_strdup_printf("http://%s:%d%s", local_ip, xd->yahoo_local_p2p_ft_server_port, xd->xfer_url); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1519 |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1520 if(purple_xfer_get_type(xfer) == PURPLE_XFER_RECEIVE) { |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1521 xd->info_val_249 = 2; /* 249=2: we are p2p server, and receiving file */ |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1522 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_ACC_15, |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1523 YAHOO_STATUS_AVAILABLE, yd->session_id); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1524 yahoo_packet_hash(pkt, "ssssis", |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1525 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1526 5, purple_xfer_get_remote_user(xfer), |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1527 265, xd->xfer_peer_idstring, |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1528 27, purple_xfer_get_filename(xfer), |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1529 249, 2, |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1530 250, url_to_send); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1531 } |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1532 else { |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1533 xd->info_val_249 = 1; /* 249=1: we are p2p server, and sending file */ |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1534 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_INFO_15, YAHOO_STATUS_AVAILABLE, yd->session_id); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1535 yahoo_packet_hash(pkt, "ssssis", |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1536 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1537 5, purple_xfer_get_remote_user(xfer), |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1538 265, xd->xfer_peer_idstring, |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1539 27, filename, |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1540 249, 1, |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1541 250, url_to_send); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1542 } |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1543 |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1544 yahoo_packet_send_and_free(pkt, yd); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1545 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1546 g_free(filename); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1547 g_free(url_to_send); |
25065
d96190de653a
Add + in place of spaces in p2p url, fixes transfer of file with name containing spaces
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25064
diff
changeset
|
1548 g_free(filename_without_spaces); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1549 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1550 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1551 /* Add an Input Read event to the file descriptor */ |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1552 xd->yahoo_local_p2p_ft_server_fd = listenfd; |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1553 xd->yahoo_p2p_ft_server_watcher = purple_input_add(listenfd, PURPLE_INPUT_READ, yahoo_p2p_ft_server_send_connected_cb, data); |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1554 } |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1555 |
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1556 /* send (p2p) file transfer information */ |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1557 static void yahoo_p2p_client_send_ft_info(PurpleConnection *gc, PurpleXfer *xfer) |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1558 { |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1559 struct yahoo_xfer_data *xd; |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1560 struct yahoo_packet *pkt; |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1561 PurpleAccount *account; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
1562 YahooData *yd; |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1563 gchar *filename; |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1564 struct yahoo_p2p_data *p2p_data; |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1565 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1566 if (!(xd = purple_xfer_get_protocol_data(xfer))) |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1567 return; |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1568 |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1569 account = purple_connection_get_account(gc); |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
1570 yd = purple_connection_get_protocol_data(gc); |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1571 |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1572 p2p_data = g_hash_table_lookup(yd->peers, purple_xfer_get_remote_user(xfer)); |
25071
38d188685f2f
changed gboolean connection_type to enum yahoo_p2p_connection_type
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25066
diff
changeset
|
1573 if( p2p_data->connection_type == YAHOO_P2P_WE_ARE_SERVER ) |
32216
d2ef8926b960
Remove deprecated purple_network_listen_map_external().
andrew.victor@mxit.com
parents:
32215
diff
changeset
|
1574 if(purple_network_listen_range(0, 0, AF_UNSPEC, SOCK_STREAM, TRUE, yahoo_p2p_ft_server_listen_cb, xfer)) |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1575 return; |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1576 |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1577 pkt = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_INFO_15, YAHOO_STATUS_AVAILABLE, yd->session_id); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1578 filename = g_path_get_basename(purple_xfer_get_local_filename(xfer)); |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1579 |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1580 yahoo_packet_hash(pkt, "ssssi", |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1581 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1582 5, purple_xfer_get_remote_user(xfer), |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1583 265, xd->xfer_peer_idstring, |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1584 27, filename, |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1585 249, 2); /* 249=2: we are p2p client */ |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1586 xd->info_val_249 = 2; |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1587 yahoo_packet_send_and_free(pkt, yd); |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1588 |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1589 g_free(filename); |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1590 } |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1591 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1592 void yahoo_process_filetrans_15(PurpleConnection *gc, struct yahoo_packet *pkt) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1593 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1594 char *from = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1595 char *to = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1596 char *imv = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1597 long val_222 = 0L; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1598 PurpleXfer *xfer; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
1599 YahooData *yd; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1600 struct yahoo_xfer_data *xfer_data; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1601 char *service = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1602 char *filename = NULL; |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1603 char *xfer_peer_idstring = NULL; |
27799
da33da2e1a1e
Fix a bunch of memory leaks reported by Josh Mueller. Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27797
diff
changeset
|
1604 char *utf8_filename; |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
1605 goffset filesize = G_GOFFSET_CONSTANT(0); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1606 GSList *l; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1607 GSList *filename_list = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1608 GSList *size_list = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1609 int nooffiles = 0; |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1610 |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
1611 yd = purple_connection_get_protocol_data(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1612 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1613 for (l = pkt->hash; l; l = l->next) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1614 struct yahoo_pair *pair = l->data; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1615 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1616 switch (pair->key) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1617 case 4: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1618 from = pair->value; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1619 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1620 case 5: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1621 to = pair->value; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1622 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1623 case 265: |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1624 xfer_peer_idstring = pair->value; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1625 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1626 case 27: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1627 filename_list = g_slist_prepend(filename_list, g_strdup(pair->value)); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1628 nooffiles++; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1629 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1630 case 28: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1631 size_list = g_slist_prepend(size_list, g_strdup(pair->value)); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1632 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1633 case 222: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1634 val_222 = atol(pair->value); |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1635 /* 1=send, 2=cancel, 3=accept, 4=reject */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1636 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1637 |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1638 /* check for p2p and imviron .... not sure it comes by this service packet. Since it was bundled with filexfer in old ymsg version, still keeping it. */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1639 case 49: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1640 service = pair->value; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1641 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1642 case 63: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1643 imv = pair->value; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1644 break; |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1645 /* end check */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1646 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1647 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1648 } |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1649 if(!xfer_peer_idstring) |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1650 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1651 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1652 if(val_222 == 2 || val_222 == 4) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1653 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1654 xfer = g_hash_table_lookup(yd->xfer_peer_idstring_map, |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1655 xfer_peer_idstring); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1656 if(!xfer) return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1657 purple_xfer_cancel_remote(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1658 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1659 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1660 if(val_222 == 3) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1661 { |
31481
b671728e6ee9
Use the new account-contextual DNS API everywhere. Refs #11110
Daniel Atallah <daniel.atallah@gmail.com>
parents:
30541
diff
changeset
|
1662 PurpleAccount *account; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1663 xfer = g_hash_table_lookup(yd->xfer_peer_idstring_map, |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1664 xfer_peer_idstring); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1665 if(!xfer) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1666 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1667 /* |
22271
cc5b2a145652
Simplified version of the newest patch on #4533 to not try Yahoo protocol
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22201
diff
changeset
|
1668 * In the file trans info packet that we must reply with, we are |
cc5b2a145652
Simplified version of the newest patch on #4533 to not try Yahoo protocol
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22201
diff
changeset
|
1669 * supposed to mention the ip address... |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1670 * purple connect does not give me a way of finding the ip address... |
22271
cc5b2a145652
Simplified version of the newest patch on #4533 to not try Yahoo protocol
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22201
diff
changeset
|
1671 * so, purple dnsquery is used... but retries, trying with next ip |
cc5b2a145652
Simplified version of the newest patch on #4533 to not try Yahoo protocol
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22201
diff
changeset
|
1672 * address etc. is not implemented..TODO |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1673 */ |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1674 |
25064
2fb8c39d0494
Send file by p2p when we are server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25058
diff
changeset
|
1675 /* To send through p2p */ |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1676 if( g_hash_table_lookup(yd->peers, from) ) { |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1677 /* send p2p file transfer information */ |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1678 yahoo_p2p_client_send_ft_info(gc, xfer); |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1679 return; |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1680 } |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1681 |
31481
b671728e6ee9
Use the new account-contextual DNS API everywhere. Refs #11110
Daniel Atallah <daniel.atallah@gmail.com>
parents:
30541
diff
changeset
|
1682 account = purple_connection_get_account(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1683 if (yd->jp) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1684 { |
32013
f22bc8b5b9dc
Replace purple_dnsquery_a_account with purple_dnsquery_a.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31998
diff
changeset
|
1685 purple_dnsquery_a(account, YAHOOJP_XFER_RELAY_HOST, |
31481
b671728e6ee9
Use the new account-contextual DNS API everywhere. Refs #11110
Daniel Atallah <daniel.atallah@gmail.com>
parents:
30541
diff
changeset
|
1686 YAHOOJP_XFER_RELAY_PORT, |
22271
cc5b2a145652
Simplified version of the newest patch on #4533 to not try Yahoo protocol
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22201
diff
changeset
|
1687 yahoo_xfer_dns_connected_15, xfer); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1688 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1689 else |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1690 { |
32013
f22bc8b5b9dc
Replace purple_dnsquery_a_account with purple_dnsquery_a.
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
31998
diff
changeset
|
1691 purple_dnsquery_a(account, YAHOO_XFER_RELAY_HOST, |
31481
b671728e6ee9
Use the new account-contextual DNS API everywhere. Refs #11110
Daniel Atallah <daniel.atallah@gmail.com>
parents:
30541
diff
changeset
|
1692 YAHOO_XFER_RELAY_PORT, |
22271
cc5b2a145652
Simplified version of the newest patch on #4533 to not try Yahoo protocol
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22201
diff
changeset
|
1693 yahoo_xfer_dns_connected_15, xfer); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1694 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1695 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1696 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1697 |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1698 /* processing for p2p and imviron .... not sure it comes by this service packet. Since it was bundled with filexfer in old ymsg version, still keeping it. */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1699 /* |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1700 * The remote user has changed their IMVironment. We |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1701 * record it for later use. |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1702 */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1703 if (from && imv && service && (strcmp("IMVIRONMENT", service) == 0)) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1704 g_hash_table_replace(yd->imvironments, g_strdup(from), g_strdup(imv)); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1705 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1706 } |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1707 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1708 if (pkt->service == YAHOO_SERVICE_P2PFILEXFER) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1709 if (service && (strcmp("FILEXFER", service) != 0)) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1710 purple_debug_misc("yahoo", "unhandled service 0x%02x\n", pkt->service); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1711 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1712 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1713 } |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1714 /* end processing */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1715 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1716 if(!filename_list) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1717 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1718 /* have to change list into order in which client at other end sends */ |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1719 filename_list = g_slist_reverse(filename_list); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1720 size_list = g_slist_reverse(size_list); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1721 filename = filename_list->data; |
32295
9bbfb9d74085
Update Yahoo for 64-bit file transfers. I'm not really sure if this
Elliott Sales de Andrade <qulogic@pidgin.im>
parents:
32216
diff
changeset
|
1722 filesize = g_ascii_strtoll(size_list->data, NULL, 10); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1723 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1724 if(!from) return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1725 xfer_data = g_new0(struct yahoo_xfer_data, 1); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1726 xfer_data->version = 15; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1727 xfer_data->firstoflist = TRUE; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1728 xfer_data->gc = gc; |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1729 xfer_data->xfer_peer_idstring = g_strdup(xfer_peer_idstring); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1730 xfer_data->filename_list = filename_list; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1731 xfer_data->size_list = size_list; |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1732 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1733 /* Build the file transfer handle. */ |
32305
2ec94166be43
On the way to hiding the PurpleConnection struct.
andrew.victor@mxit.com
parents:
32295
diff
changeset
|
1734 xfer = purple_xfer_new(purple_connection_get_account(gc), PURPLE_XFER_RECEIVE, from); |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1735 if (xfer == NULL) |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1736 { |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1737 g_free(xfer_data); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1738 g_return_if_reached(); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1739 } |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1740 |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1741 /* Set the info about the incoming file. */ |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1742 utf8_filename = yahoo_string_decode(gc, filename, TRUE); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1743 purple_xfer_set_filename(xfer, utf8_filename); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1744 g_free(utf8_filename); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1745 purple_xfer_set_size(xfer, filesize); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1746 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1747 purple_xfer_set_protocol_data(xfer, xfer_data); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1748 |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1749 /* Setup our I/O op functions */ |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1750 purple_xfer_set_init_fnc(xfer, yahoo_xfer_init_15); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1751 purple_xfer_set_start_fnc(xfer, yahoo_xfer_start); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1752 purple_xfer_set_end_fnc(xfer, yahoo_xfer_end); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1753 purple_xfer_set_cancel_send_fnc(xfer, yahoo_xfer_cancel_send); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1754 purple_xfer_set_cancel_recv_fnc(xfer, yahoo_xfer_cancel_recv); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1755 purple_xfer_set_read_fnc(xfer, yahoo_xfer_read); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1756 purple_xfer_set_write_fnc(xfer, yahoo_xfer_write); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1757 purple_xfer_set_request_denied_fnc(xfer,yahoo_xfer_cancel_recv); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1758 |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1759 g_hash_table_insert(yd->xfer_peer_idstring_map, |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1760 xfer_data->xfer_peer_idstring, |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1761 xfer); |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1762 |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1763 if(nooffiles > 1) { |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1764 gchar* message; |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1765 message = g_strdup_printf(_("%s is trying to send you a group of %d files.\n"), purple_xfer_get_remote_user(xfer), nooffiles); |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1766 purple_xfer_conversation_write(xfer, message, FALSE); |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1767 g_free(message); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1768 } |
27797
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1769 /* Now perform the request */ |
0a056130718e
yahoo: Fix some "leaks" (in reality these shouldn't happen). Refs #9822.
Paul Aurich <paul@darkrain42.org>
parents:
27694
diff
changeset
|
1770 purple_xfer_request(xfer); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1771 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1772 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1773 void yahoo_process_filetrans_info_15(PurpleConnection *gc, struct yahoo_packet *pkt) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1774 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1775 char *from = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1776 char *to = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1777 char *url = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1778 long val_249 = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1779 long val_66 = 0; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1780 PurpleXfer *xfer; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
1781 YahooData *yd; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1782 struct yahoo_xfer_data *xfer_data; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1783 char *filename = NULL; |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1784 char *xfer_peer_idstring = NULL; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1785 char *xfer_idstring_for_relay = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1786 GSList *l; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1787 struct yahoo_packet *pkt_to_send; |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1788 struct yahoo_p2p_data *p2p_data; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1789 |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
1790 yd = purple_connection_get_protocol_data(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1791 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1792 for (l = pkt->hash; l; l = l->next) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1793 struct yahoo_pair *pair = l->data; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1794 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1795 switch (pair->key) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1796 case 4: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1797 from = pair->value; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1798 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1799 case 5: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1800 to = pair->value; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1801 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1802 case 265: |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1803 xfer_peer_idstring = pair->value; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1804 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1805 case 27: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1806 filename = pair->value; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1807 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1808 case 66: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1809 val_66 = strtol(pair->value, NULL, 10); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1810 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1811 case 249: |
25013
ef47df3e5dd4
Yahoo P2P File Transfer RECEIVE only support added.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
22818
diff
changeset
|
1812 val_249 = strtol(pair->value, NULL, 10); |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1813 /* 249 has value 1 or 2 when doing p2p transfer and value 3 when relaying through yahoo server */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1814 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1815 case 250: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1816 url = pair->value; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1817 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1818 case 251: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1819 xfer_idstring_for_relay = pair->value; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1820 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1821 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1822 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1823 |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1824 if(!xfer_peer_idstring) |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1825 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1826 |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1827 xfer = g_hash_table_lookup(yd->xfer_peer_idstring_map, xfer_peer_idstring); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1828 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1829 if(!xfer) return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1830 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1831 if(val_66==-1) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1832 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1833 purple_xfer_cancel_remote(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1834 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1835 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1836 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1837 xfer_data = purple_xfer_get_protocol_data(xfer); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1838 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1839 xfer_data->info_val_249 = val_249; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1840 xfer_data->xfer_idstring_for_relay = g_strdup(xfer_idstring_for_relay); |
31481
b671728e6ee9
Use the new account-contextual DNS API everywhere. Refs #11110
Daniel Atallah <daniel.atallah@gmail.com>
parents:
30541
diff
changeset
|
1841 if(val_249 == 1 || val_249 == 3) { |
b671728e6ee9
Use the new account-contextual DNS API everywhere. Refs #11110
Daniel Atallah <daniel.atallah@gmail.com>
parents:
30541
diff
changeset
|
1842 PurpleAccount *account; |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1843 if (!purple_url_parse(url, &(xfer_data->host), &(xfer_data->port), &(xfer_data->path), NULL, NULL)) { |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1844 purple_xfer_cancel_remote(xfer); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1845 return; |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1846 } |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1847 |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1848 account = purple_connection_get_account(xfer_data->gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1849 |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1850 pkt_to_send = yahoo_packet_new(YAHOO_SERVICE_FILETRANS_ACC_15, |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1851 YAHOO_STATUS_AVAILABLE, yd->session_id); |
27181
f8428553f11c
Fix File transfer issue with Pidgin 2.5.7, ticket #9478
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
27119
diff
changeset
|
1852 yahoo_packet_hash(pkt_to_send, "ssssis", |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1853 1, purple_normalize(account, purple_account_get_username(account)), |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1854 5, purple_xfer_get_remote_user(xfer), |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1855 265, xfer_data->xfer_peer_idstring, |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1856 27, purple_xfer_get_filename(xfer), |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1857 249, xfer_data->info_val_249, |
27181
f8428553f11c
Fix File transfer issue with Pidgin 2.5.7, ticket #9478
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
27119
diff
changeset
|
1858 251, xfer_data->xfer_idstring_for_relay); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1859 |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1860 yahoo_packet_send_and_free(pkt_to_send, yd); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1861 |
27119
d078048fb03a
Pass the gc as the handle in a bunch of calls to purple_proxy_connect
Mark Doliner <mark@kingant.net>
parents:
27111
diff
changeset
|
1862 if (purple_proxy_connect(gc, account, xfer_data->host, xfer_data->port, |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1863 yahoo_xfer_connected_15, xfer) == NULL) { |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1864 purple_notify_error(gc, NULL, _("File Transfer Failed"), |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1865 _("Unable to establish file descriptor.")); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1866 purple_xfer_cancel_remote(xfer); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1867 } |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1868 } |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1869 else if(val_249 == 2) { |
31988
b6defcebfe4b
Steps toward hiding PurpleXfer.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
31966
diff
changeset
|
1870 p2p_data = g_hash_table_lookup(yd->peers, purple_xfer_get_remote_user(xfer)); |
25071
38d188685f2f
changed gboolean connection_type to enum yahoo_p2p_connection_type
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25066
diff
changeset
|
1871 if( !( p2p_data && (p2p_data->connection_type == YAHOO_P2P_WE_ARE_SERVER) ) ) { |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1872 purple_xfer_cancel_remote(xfer); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1873 return; |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1874 } |
32216
d2ef8926b960
Remove deprecated purple_network_listen_map_external().
andrew.victor@mxit.com
parents:
32215
diff
changeset
|
1875 if(!purple_network_listen_range(0, 0, AF_UNSPEC, SOCK_STREAM, TRUE, yahoo_p2p_ft_server_listen_cb, xfer)) { |
25066
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1876 purple_xfer_cancel_remote(xfer); |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1877 return; |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1878 } |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1879 } |
37b207e08c69
Receive files when we are p2p server
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25065
diff
changeset
|
1880 } |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1881 |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1882 /* TODO: Check filename etc. No probs till some hacker comes in the way */ |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1883 void yahoo_process_filetrans_acc_15(PurpleConnection *gc, struct yahoo_packet *pkt) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1884 { |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1885 gchar *xfer_peer_idstring = NULL; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1886 gchar *xfer_idstring_for_relay = NULL; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1887 PurpleXfer *xfer; |
27694
908be3822215
Move from "struct yahoo_data" to "YahooData" to be consistent with other structs
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
27313
diff
changeset
|
1888 YahooData *yd; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1889 struct yahoo_xfer_data *xfer_data; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1890 GSList *l; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1891 PurpleAccount *account; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1892 long val_66 = 0; |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1893 gchar *url = NULL; |
26137
51bdaa82b95d
Remove check of version for file transfer, use only version 15 file transfer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25073
diff
changeset
|
1894 int val_249 = 0; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1895 |
31998
fcf841ffd620
Convert yahoo prpl to use accessor functions purple_connection_get_protocol_data() and purple_connection_set_protocol_data()
andrew.victor@mxit.com
parents:
31988
diff
changeset
|
1896 yd = purple_connection_get_protocol_data(gc); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1897 for (l = pkt->hash; l; l = l->next) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1898 struct yahoo_pair *pair = l->data; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1899 |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1900 switch (pair->key) { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1901 case 251: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1902 xfer_idstring_for_relay = pair->value; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1903 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1904 case 265: |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1905 xfer_peer_idstring = pair->value; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1906 break; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1907 case 66: |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1908 val_66 = atol(pair->value); |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1909 break; |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1910 case 249: |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1911 val_249 = atol(pair->value); |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1912 break; |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1913 case 250: |
25072
63033139c590
minor changes in comments style and alphabetic ordering of header files.
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25071
diff
changeset
|
1914 url = pair->value; /* we get a p2p url here when sending file, connected as client */ |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1915 break; |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1916 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1917 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1918 |
22020
4163dcf643ae
Some readability changes. Refs #4533.
John Bailey <rekkanoryo@rekkanoryo.org>
parents:
22018
diff
changeset
|
1919 xfer = g_hash_table_lookup(yd->xfer_peer_idstring_map, xfer_peer_idstring); |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1920 if(!xfer) return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1921 |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1922 if(val_66 == -1 || ( (!(xfer_idstring_for_relay)) && (val_249 != 2) )) |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1923 { |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1924 purple_xfer_cancel_remote(xfer); |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1925 return; |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1926 } |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1927 |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1928 if( (val_249 == 2) && (!(url)) ) |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1929 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1930 purple_xfer_cancel_remote(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1931 return; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1932 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1933 |
31966
dc4de0b08405
Convert the yahoo prpl to using the new API.
andrew.victor@mxit.com
parents:
31788
diff
changeset
|
1934 xfer_data = purple_xfer_get_protocol_data(xfer); |
25058
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1935 if(url) |
ccbded331513
Support for P2P file transfer (SEND), when we are client to the peer
Sulabh Mahajan <sulabh@soc.pidgin.im>
parents:
25013
diff
changeset
|
1936 purple_url_parse(url, &(xfer_data->host), &(xfer_data->port), &(xfer_data->path), NULL, NULL); |
27111
510f07e1f5c1
Strip trailing whitespace and comment #endif marcos that close #ifdef macros
Mark Doliner <mark@kingant.net>
parents:
26827
diff
changeset
|
1937 |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1938 xfer_data->xfer_idstring_for_relay = g_strdup(xfer_idstring_for_relay); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1939 xfer_data->status_15 = ACCEPTED; |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1940 account = purple_connection_get_account(gc); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1941 |
27119
d078048fb03a
Pass the gc as the handle in a bunch of calls to purple_proxy_connect
Mark Doliner <mark@kingant.net>
parents:
27111
diff
changeset
|
1942 if (purple_proxy_connect(gc, account, xfer_data->host, xfer_data->port, |
22018
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1943 yahoo_xfer_connected_15, xfer) == NULL) |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1944 { |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1945 purple_notify_error(gc, NULL, _("File Transfer Failed"),_("Unable to connect")); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1946 purple_xfer_cancel_remote(xfer); |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1947 } |
118046227581
This patch from Thanumalayan S. implements Yahoo protocol version 15 file
Thanumalayan <madthanu@gmail.com>
parents:
22017
diff
changeset
|
1948 } |