Mercurial > pidgin
annotate src/protocols/simple/simple.h @ 12601:e63fb8e9f4ac
[gaim-migrate @ 14935]
Jason LeBrun wrote to gaim-devel:
"I have found a small quirk in the way gdk_pixbuf_loader works. When you
are using it without signalling, the proper way to use it is to call
gdk_pixbuf_loader_close *before* calling gdk_pixbuf_loader_get_animation
or gdk_pixbuf_loader_get_pixbuf. The call to gdk_pixbuf_loader_close
signals that no more writes will be occuring.
In particular, this affects images that are less than 1k in size. If
gdk_pixbuf_loader_close is not called before _get_animation, the loader
will not return anything unless it has received more than 1k of data
(the file type sniffing buffer size) or it has been closed.
So, the proper order of calls for loaders in the gtk*.c code is:
gdk_pixbuf_loader_new();
gdk_pixbuf_loader_write();
gdk_pixbuf_loader_close();
gdk_pixbuf_loader_get_animation();"
I know we fixed a bug by changing this in one place. I've gone through and updated the rest.
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Wed, 21 Dec 2005 18:43:39 +0000 |
| parents | cfc808463763 |
| children | c5acba513363 |
| rev | line source |
|---|---|
| 11181 | 1 /** |
| 2 * @file simple.h | |
| 3 * | |
| 4 * gaim | |
| 5 * | |
| 6 * Copyright (C) 2005, Thomas Butter <butter@uni-mannheim.de> | |
| 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 | |
| 23 #ifndef _GAIM_SIMPLE_H | |
| 24 #define _GAIM_SIMPLE_H | |
| 25 | |
| 26 #include <glib.h> | |
| 27 #include <time.h> | |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
28 |
|
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
29 #include <cipher.h> |
| 11181 | 30 #include <prpl.h> |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
31 |
| 11181 | 32 #include "sipmsg.h" |
| 33 | |
| 34 #define SIMPLE_BUF_INC 1024 | |
| 35 | |
| 36 struct sip_dialog { | |
| 37 gchar *ourtag; | |
| 38 gchar *theirtag; | |
| 39 gchar *callid; | |
| 40 }; | |
| 41 | |
| 42 struct simple_watcher { | |
| 43 gchar *name; | |
| 44 time_t expire; | |
| 45 struct sip_dialog dialog; | |
| 46 }; | |
| 47 | |
| 48 struct simple_buddy { | |
| 49 gchar *name; | |
| 50 time_t resubscribe; | |
| 51 }; | |
| 52 | |
| 53 struct sip_auth { | |
| 11346 | 54 int type; /* 1 = Digest / 2 = NTLM */ |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
55 gchar *nonce; |
|
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
56 gchar *realm; |
| 11424 | 57 gchar *target; |
| 11181 | 58 int nc; |
|
12382
cfc808463763
[gaim-migrate @ 14688]
Richard Laager <rlaager@wiktel.com>
parents:
12196
diff
changeset
|
59 gchar *digest_session_key; |
| 11346 | 60 int retries; |
| 11181 | 61 }; |
| 62 | |
| 63 struct simple_account_data { | |
| 64 GaimConnection *gc; | |
| 65 gchar *servername; | |
| 66 gchar *username; | |
| 67 gchar *password; | |
| 68 int fd; | |
| 69 int cseq; | |
| 70 time_t reregister; | |
| 71 time_t republish; | |
|
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11424
diff
changeset
|
72 int registerstatus; /* 0 nothing, 1 first registration send, 2 auth received, 3 registered */ |
| 11181 | 73 struct sip_auth registrar; |
| 74 struct sip_auth proxy; | |
| 75 int listenfd; | |
| 76 int listenport; | |
| 11409 | 77 int listenpa; |
| 11181 | 78 gchar *ip; |
| 79 gchar *status; | |
| 80 GHashTable *buddies; | |
| 81 guint registertimeout; | |
| 11194 | 82 guint resendtimeout; |
| 11181 | 83 int connecting; |
| 84 GaimAccount *account; | |
| 85 gchar *sendlater; | |
| 12196 | 86 gchar *regcallid; |
| 11181 | 87 GSList *transactions; |
| 88 GSList *watcher; | |
| 89 GSList *openconns; | |
| 11189 | 90 gboolean udp; |
| 91 struct sockaddr_in serveraddr; | |
| 11194 | 92 int registerexpire; |
| 11383 | 93 gchar *realhostname; |
| 94 int realport; /* port and hostname from SRV record */ | |
| 11181 | 95 }; |
| 96 | |
| 97 struct sip_connection { | |
| 98 int fd; | |
| 99 gchar *inbuf; | |
| 100 int inbuflen; | |
| 101 int inbufused; | |
| 102 int inputhandler; | |
| 103 }; | |
| 104 | |
| 105 struct transaction; | |
| 106 | |
| 107 typedef gboolean (*TransCallback) (struct simple_account_data *, struct sipmsg *, struct transaction *); | |
| 108 | |
| 109 struct transaction { | |
| 110 time_t time; | |
| 111 int retries; | |
|
11829
4669e7461968
[gaim-migrate @ 14120]
Richard Laager <rlaager@wiktel.com>
parents:
11424
diff
changeset
|
112 int transport; /* 0 = tcp, 1 = udp */ |
| 11181 | 113 int fd; |
| 114 gchar *cseq; | |
| 115 struct sipmsg *msg; | |
| 116 TransCallback callback; | |
| 117 }; | |
| 118 | |
| 119 #endif /* _GAIM_SIMPLE_H */ |
