/** * @file msn.h The NATEON protocol plugin * * purple * * Purple is the legal property of its developers, whose names are too numerous * to list here. Please refer to the COPYRIGHT file distributed with this * source distribution. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #ifndef _NATEON_H_ #define _NATEON_H_ /* #define NATEON_DEBUG_MSG 1 */ /* #define NATEON_DEBUG_SLPMSG 1 */ /* #define NATEON_DEBUG_HTTP 1 */ /* #define NATEON_DEBUG_SLP 1 */ /* #define NATEON_DEBUG_SLP_VERBOSE 1 */ /* #define NATEON_DEBUG_SLP_FILES 1 */ /* #define NATEON_DEBUG_NS 1 */ /* #define NATEON_DEBUG_SB 1 */ #include "internal.h" #include "account.h" #include "accountopt.h" #include "blist.h" #include "connection.h" #include "conversation.h" #include "debug.h" #include "cipher.h" #include "notify.h" #include "privacy.h" #include "proxy.h" #include "prpl.h" #include "request.h" #include "servconn.h" //#include "sslconn.h" #include "util.h" //#include "ft.h" #define NATEON_BUF_LEN 8192 //#define USEROPT_NATEONSERVER 3 #define NATEON_SERVER "dpl.nate.com" //#define USEROPT_NATEONPORT 4 #define NATEON_PORT 5004 #define NATEON_PRS_SERVER "prs.nate.com" #define NATEON_TYPING_RECV_TIMEOUT 6 #define NATEON_TYPING_SEND_TIMEOUT 4 //#define HOTMAIL_URL "http://www.hotmail.com/cgi-bin/folders" //#define PASSPORT_URL "http://lc1.law13.hotmail.passport.com/cgi-bin/dologin?login=" //#define PROFILE_URL "http://spaces.msn.com/profile.aspx?mem=" // //#define USEROPT_HOTMAIL 0 #define BUDDY_ALIAS_MAXLEN 387 /* #define NATEON_FT_GUID "{5D3E02AB-6190-11d3-BBBB-00C04F795683}" #define NATEON_CLIENTINFO \ "Client-Name: Purple/" VERSION "\r\n" \ "Chat-Logging: Y\r\n" */ typedef enum { NATEON_LIST_FL_OP = 0x01, NATEON_LIST_AL_OP = 0x02, NATEON_LIST_BL_OP = 0x04, NATEON_LIST_RL_OP = 0x08, } NateonListOp; typedef enum { NATEON_VIEW_BUDDIES_BY_NAME, NATEON_VIEW_BUDDIES_BY_SCREEN_NAME, NATEON_VIEW_BUDDIES_BY_NAME_AND_ID, NATEON_VIEW_BUDDIES_BY_NAME_AND_SCREEN_NAME } NateonViewBuddiesBy; //typedef enum //{ // NATEON_CLIENT_CAP_WIN_MOBILE = 0x00001, // NATEON_CLIENT_CAP_UNKNOWN_1 = 0x00002, // NATEON_CLIENT_CAP_INK_GIF = 0x00004, // NATEON_CLIENT_CAP_INK_ISF = 0x00008, // NATEON_CLIENT_CAP_VIDEO_CHAT = 0x00010, // NATEON_CLIENT_CAP_BASE = 0x00020, // NATEON_CLIENT_CAP_NATEONMOBILE = 0x00040, // NATEON_CLIENT_CAP_NATEONDIRECT = 0x00080, // NATEON_CLIENT_CAP_WEBMSGR = 0x00100, // NATEON_CLIENT_CAP_DIRECTIM = 0x04000, // NATEON_CLIENT_CAP_WINKS = 0x08000, // NATEON_CLIENT_CAP_SEARCH = 0x10000 // //} NateonClientCaps; // //typedef enum //{ // NATEON_CLIENT_VER_5_0 = 0x00, // NATEON_CLIENT_VER_6_0 = 0x10, /* NATEONC1 */ // NATEON_CLIENT_VER_6_1 = 0x20, /* NATEONC2 */ // NATEON_CLIENT_VER_6_2 = 0x30, /* NATEONC3 */ // NATEON_CLIENT_VER_7_0 = 0x40, /* NATEONC4 */ // NATEON_CLIENT_VER_7_5 = 0x50 /* NATEONC5 */ // //} NateonClientVerId; /* #define NATEON_CLIENT_ID_VERSION NATEON_CLIENT_VER_7_0 #define NATEON_CLIENT_ID_RESERVED_1 0x00 #define NATEON_CLIENT_ID_RESERVED_2 0x00 #define NATEON_CLIENT_ID_CAPABILITIES NATEON_CLIENT_CAP_BASE #define NATEON_CLIENT_ID \ ((NATEON_CLIENT_ID_VERSION << 24) | \ (NATEON_CLIENT_ID_RESERVED_1 << 16) | \ (NATEON_CLIENT_ID_RESERVED_2 << 8) | \ (NATEON_CLIENT_ID_CAPABILITIES)) */ #define NATEON_MAJOR_VERSION 3 #define NATEON_MINOR_VERSION 615 #endif /* _NATEON_H_ */