Mercurial > pidgin
annotate src/protocols/msn/msn.h @ 5718:c19cc2a3d65e
[gaim-migrate @ 6140]
Connecting using the checkbox works again. Sean broke it. Tsk tsk.
committer: Tailor Script <tailor@pidgin.im>
| author | Christian Hammond <chipx86@chipx86.com> |
|---|---|
| date | Tue, 03 Jun 2003 20:25:21 +0000 |
| parents | 1d140b31d4b3 |
| children | 059d95c67cda |
| rev | line source |
|---|---|
| 4542 | 1 /** |
| 2 * @file msn.h The MSN protocol plugin | |
| 3 * | |
| 4 * gaim | |
| 5 * | |
|
5309
e2e53316a21d
[gaim-migrate @ 5681]
Christian Hammond <chipx86@chipx86.com>
parents:
5166
diff
changeset
|
6 * Copyright (C) 2003 Christian Hammond <chipx86@gnupdate.org> |
| 4542 | 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 | |
| 20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 21 */ | |
| 22 #ifndef _MSN_H_ | |
| 23 #define _MSN_H_ | |
| 24 | |
| 25 #include "config.h" | |
| 26 | |
| 27 #ifndef _WIN32 | |
| 28 #include <unistd.h> | |
| 29 #else | |
| 30 #include <winsock.h> | |
| 31 #include <io.h> | |
| 32 #endif | |
| 33 | |
| 34 | |
| 35 #include <sys/stat.h> | |
| 36 #include <stdlib.h> | |
| 37 #include <string.h> | |
| 38 #include <errno.h> | |
| 39 #include <stdio.h> | |
| 40 #include <ctype.h> | |
| 41 #ifndef _WIN32 | |
| 42 #include <netdb.h> | |
| 43 #endif | |
|
5309
e2e53316a21d
[gaim-migrate @ 5681]
Christian Hammond <chipx86@chipx86.com>
parents:
5166
diff
changeset
|
44 |
| 5717 | 45 #include "gaim.h" |
| 46 #include "account.h" | |
|
5309
e2e53316a21d
[gaim-migrate @ 5681]
Christian Hammond <chipx86@chipx86.com>
parents:
5166
diff
changeset
|
47 #include "blist.h" |
| 5717 | 48 #include "conversation.h" |
| 49 #include "connection.h" | |
|
5309
e2e53316a21d
[gaim-migrate @ 5681]
Christian Hammond <chipx86@chipx86.com>
parents:
5166
diff
changeset
|
50 #include "debug.h" |
|
e2e53316a21d
[gaim-migrate @ 5681]
Christian Hammond <chipx86@chipx86.com>
parents:
5166
diff
changeset
|
51 #include "md5.h" |
|
e2e53316a21d
[gaim-migrate @ 5681]
Christian Hammond <chipx86@chipx86.com>
parents:
5166
diff
changeset
|
52 #include "proxy.h" |
| 4542 | 53 #include "prpl.h" |
| 54 | |
| 55 #ifdef _WIN32 | |
| 56 #include "win32dep.h" | |
| 57 #include "stdint.h" | |
| 58 #endif | |
| 59 | |
| 60 #define MSN_BUF_LEN 8192 | |
| 61 | |
| 62 #define USEROPT_MSNSERVER 3 | |
| 63 #define MSN_SERVER "messenger.hotmail.com" | |
| 64 #define USEROPT_MSNPORT 4 | |
| 65 #define MSN_PORT 1863 | |
| 66 | |
| 67 #define MSN_TYPING_RECV_TIMEOUT 6 | |
| 68 #define MSN_TYPING_SEND_TIMEOUT 4 | |
| 69 | |
|
5309
e2e53316a21d
[gaim-migrate @ 5681]
Christian Hammond <chipx86@chipx86.com>
parents:
5166
diff
changeset
|
70 #define HOTMAIL_URL "http://www.hotmail.com/cgi-bin/folders" |
|
e2e53316a21d
[gaim-migrate @ 5681]
Christian Hammond <chipx86@chipx86.com>
parents:
5166
diff
changeset
|
71 #define PASSPORT_URL "http://lc1.law13.hotmail.passport.com/cgi-bin/dologin?login=" |
| 4542 | 72 |
|
5309
e2e53316a21d
[gaim-migrate @ 5681]
Christian Hammond <chipx86@chipx86.com>
parents:
5166
diff
changeset
|
73 #define USEROPT_HOTMAIL 0 |
| 4542 | 74 |
| 75 | |
|
5309
e2e53316a21d
[gaim-migrate @ 5681]
Christian Hammond <chipx86@chipx86.com>
parents:
5166
diff
changeset
|
76 #define MSN_FT_GUID "{5D3E02AB-6190-11d3-BBBB-00C04F795683}" |
| 4542 | 77 |
|
5564
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5475
diff
changeset
|
78 #define MSN_CONNECT_STEPS 7 |
|
187c740f2a4e
[gaim-migrate @ 5966]
Christian Hammond <chipx86@chipx86.com>
parents:
5475
diff
changeset
|
79 |
|
5316
d5690ed70085
[gaim-migrate @ 5688]
Christian Hammond <chipx86@chipx86.com>
parents:
5309
diff
changeset
|
80 #define MSN_CLIENTINFO \ |
|
5475
ad9887c91a59
[gaim-migrate @ 5871]
Christian Hammond <chipx86@chipx86.com>
parents:
5316
diff
changeset
|
81 "Client-Name: Gaim/" VERSION "\r\n" \ |
|
ad9887c91a59
[gaim-migrate @ 5871]
Christian Hammond <chipx86@chipx86.com>
parents:
5316
diff
changeset
|
82 "Chat-Logging: Y\r\n" \ |
|
ad9887c91a59
[gaim-migrate @ 5871]
Christian Hammond <chipx86@chipx86.com>
parents:
5316
diff
changeset
|
83 "Buddy-Icons: 1\r\n" |
|
5316
d5690ed70085
[gaim-migrate @ 5688]
Christian Hammond <chipx86@chipx86.com>
parents:
5309
diff
changeset
|
84 |
| 4542 | 85 #endif /* _MSN_H_ */ |
