Mon, 11 Apr 2005 00:19:40 +0000
[gaim-migrate @ 12459]
" I should've included this in my signal patch that was
recently accepted for HEAD." --rlaager
committer: Luke Schierer <lschiere@pidgin.im>
| 10321 | 1 | /** |
| 2 | * @file direct.h Code to handle rendezvous direct connection. This | |
| 3 | * is basically a mini Jabber implementation. | |
| 4 | * | |
| 5 | * gaim | |
| 6 | * | |
| 7 | * Gaim is the legal property of its developers, whose names are too numerous | |
| 8 | * to list here. Please refer to the COPYRIGHT file distributed with this | |
| 9 | * source distribution. | |
| 10 | * | |
| 11 | * This program is free software; you can redistribute it and/or modify | |
| 12 | * it under the terms of the GNU General Public License as published by | |
| 13 | * the Free Software Foundation; either version 2 of the License, or | |
| 14 | * (at your option) any later version. | |
| 15 | * | |
| 16 | * This program is distributed in the hope that it will be useful, | |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 19 | * GNU General Public License for more details. | |
| 20 | * | |
| 21 | * You should have received a copy of the GNU General Public License | |
| 22 | * along with this program; if not, write to the Free Software | |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | |
| 24 | * | |
| 25 | */ | |
| 26 | ||
| 27 | #ifndef _DIRECT_H_ | |
| 28 | #define _DIRECT_H_ | |
| 29 | ||
| 30 | #include "eventloop.h" | |
| 31 | ||
|
10596
5fe1670fec47
[gaim-migrate @ 12011]
Mark Doliner <markdoliner@pidgin.im>
parents:
10321
diff
changeset
|
32 | #include "rendezvous.h" |
|
5fe1670fec47
[gaim-migrate @ 12011]
Mark Doliner <markdoliner@pidgin.im>
parents:
10321
diff
changeset
|
33 | |
| 10321 | 34 | void rendezvous_direct_acceptconnection(gpointer data, gint source, GaimInputCondition condition); |
| 35 | ||
|
10596
5fe1670fec47
[gaim-migrate @ 12011]
Mark Doliner <markdoliner@pidgin.im>
parents:
10321
diff
changeset
|
36 | void rendezvous_direct_send_message(GaimConnection *gc, const char *who, const char *message); |
|
5fe1670fec47
[gaim-migrate @ 12011]
Mark Doliner <markdoliner@pidgin.im>
parents:
10321
diff
changeset
|
37 | |
| 10321 | 38 | #endif /* _DIRECT_H_ */ |