Mercurial > pidgin.yaz
view libpurple/protocols/gg/lib/protocol.h @ 30602:27aff21c5eea
Change the function of the "proxy_ssl" account option to cover regular HTTP
requests as well as HTTPS requests. While this does fix the core issue of
#11986, there is still more that I need to do to fix his issue. Refs #11986.
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Sat, 12 Jun 2010 02:41:35 +0000 |
parents | 6359fde67f4c |
children | 93b08d43f684 |
line wrap: on
line source
/* $Id$ */ /* * (C) Copyright 2009 Jakub Zawadzki <darkjames@darkjames.ath.cx> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License Version * 2.1 as published by the Free Software Foundation. * * 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 Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser 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 LIBGADU_PROTOCOL_H #define LIBGADU_PROTOCOL_H #include "libgadu.h" #ifdef _WIN32 #pragma pack(push, 1) #endif #define GG_LOGIN80BETA 0x0029 #define GG_LOGIN80 0x0031 #undef GG_FEATURE_STATUS80BETA #undef GG_FEATURE_MSG80 #undef GG_FEATURE_STATUS80 #define GG_FEATURE_STATUS80BETA 0x01 #define GG_FEATURE_MSG80 0x02 #define GG_FEATURE_STATUS80 0x05 #define GG8_LANG "pl" #define GG8_VERSION "Gadu-Gadu Client Build 8.0.0.8731" struct gg_login80 { uint32_t uin; /* mój numerek */ uint8_t language[2]; /* język: GG8_LANG */ uint8_t hash_type; /* rodzaj hashowania hasła */ uint8_t hash[64]; /* hash hasła dopełniony zerami */ uint32_t status; /* status na dzień dobry */ uint32_t flags; /* flagi (przeznaczenie nieznane) */ uint32_t features; /* opcje protokołu (GG8_FEATURES) */ uint32_t local_ip; /* mój adres ip */ uint16_t local_port; /* port, na którym słucham */ uint32_t external_ip; /* zewnętrzny adres ip (???) */ uint16_t external_port; /* zewnętrzny port (???) */ uint8_t image_size; /* maksymalny rozmiar grafiki w KiB */ uint8_t dunno2; /* 0x64 */ } GG_PACKED; #define GG_LOGIN_HASH_TYPE_INVALID 0x0016 #define GG_LOGIN80_OK 0x0035 #define GG_NEW_STATUS80BETA 0x0028 #define GG_NEW_STATUS80 0x0038 /** * Zmiana stanu (pakiet \c GG_NEW_STATUS80) */ struct gg_new_status80 { uint32_t status; /**< Nowy status */ uint32_t flags; /**< flagi (nieznane przeznaczenie) */ uint32_t description_size; /**< rozmiar opisu */ } GG_PACKED; #define GG_STATUS80BETA 0x002a #define GG_NOTIFY_REPLY80BETA 0x002b #define GG_STATUS80 0x0036 #define GG_NOTIFY_REPLY80 0x0037 struct gg_notify_reply80 { uint32_t uin; /* numerek plus flagi w najstarszym bajcie */ uint32_t status; /* status danej osoby */ uint32_t flags; /* flagi (przeznaczenie nieznane) */ uint32_t remote_ip; /* adres IP bezpośrednich połączeń */ uint16_t remote_port; /* port bezpośrednich połączeń */ uint8_t image_size; /* maksymalny rozmiar obrazków w KB */ uint8_t unknown2; /* 0x00 */ uint32_t unknown3; /* 0x00000000 */ uint32_t descr_len; /* rozmiar opisu */ } GG_PACKED; #define GG_SEND_MSG80 0x002d struct gg_send_msg80 { uint32_t recipient; uint32_t seq; uint32_t msgclass; uint32_t offset_plain; uint32_t offset_attr; } GG_PACKED; #define GG_RECV_MSG80 0x002e struct gg_recv_msg80 { uint32_t sender; uint32_t seq; uint32_t time; uint32_t msgclass; uint32_t offset_plain; uint32_t offset_attr; } GG_PACKED; #define GG_DISCONNECT_ACK 0x000d #define GG_DCC7_VOICE_RETRIES 0x11 /* 17 powtorzen */ #define GG_DCC7_RESERVED1 0xdeadc0de #define GG_DCC7_RESERVED2 0xdeadbeaf struct gg_dcc7_voice_auth { uint8_t type; /* 0x00 -> wysylanie ID 0x01 -> potwierdzenie ID */ gg_dcc7_id_t id; /* identyfikator połączenia */ uint32_t reserved1; /* GG_DCC7_RESERVED1 */ uint32_t reserved2; /* GG_DCC7_RESERVED2 */ } GG_PACKED; struct gg_dcc7_voice_nodata { /* wyciszony mikrofon, ten pakiet jest wysylany co 1s (jesli chcemy podtrzymac polaczenie) */ uint8_t type; /* 0x02 */ gg_dcc7_id_t id; /* identyfikator połączenia */ uint32_t reserved1; /* GG_DCC7_RESERVED1 */ uint32_t reserved2; /* GG_DCC7_RESERVED2 */ } GG_PACKED; struct gg_dcc7_voice_data { uint8_t type; /* 0x03 */ uint32_t did; /* XXX: co ile zwieksza sie u nas id pakietu [uzywac 0x28] */ uint32_t len; /* rozmiar strukturki - 1 (sizeof(type)) */ uint32_t packet_id; /* numerek pakietu */ uint32_t datalen; /* rozmiar danych */ /* char data[]; */ /* ramki: albo gsm, albo speex, albo melp, albo inne. */ } GG_PACKED; struct gg_dcc7_voice_init { uint8_t type; /* 0x04 */ uint32_t id; /* nr kroku [0x1 - 0x5] */ uint32_t protocol; /* XXX: wersja protokolu (0x29, 0x2a, 0x2b) */ uint32_t len; /* rozmiar sizeof(protocol)+sizeof(len)+sizeof(data) = 0x08 + sizeof(data) */ /* char data[]; */ /* reszta danych */ } GG_PACKED; struct gg_dcc7_voice_init_confirm { uint8_t type; /* 0x05 */ uint32_t id; /* id tego co potwierdzamy [0x1 - 0x5] */ } GG_PACKED; #ifdef _WIN32 #pragma pack(pop) #endif #endif /* LIBGADU_PROTOCOL_H */