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