~ubuntu-branches/ubuntu/trusty/irssi-plugin-xmpp/trusty-proposed

« back to all changes in this revision

Viewing changes to src/core/xmpp.h

  • Committer: Package Import Robot
  • Author(s): Florian Schlichting, Florian Schlichting
  • Date: 2014-01-03 00:25:20 UTC
  • mfrom: (1.3.6)
  • Revision ID: package-import@ubuntu.com-20140103002520-zc3sfydzt1wp03i0
Tags: 0.52+git20140102-1
[ Florian Schlichting ]
* Import Upstream version 0.52+git20140102
* Add VCS-* fields for collab-maint on alioth
* Add upstream git URL to Source field in debian/copyright
* Drop patches plucked from upstream CVS
* Refresh hardening.patch (offset, drop hunk fixed upstream)
* Provide xmpp-admin.pl script by Seth Difley
* Add GTalk-MUC-support.patch, plucked from github/freemandrew
* Add support for XMPP-PGP, plucked from github/singpolyma
* New useless-dependency-on-libidn.patch, to fix a lintian warning
* Declare compliance with Debian Policy 3.9.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* $Id: xmpp.h,v 1.14 2012/02/15 17:45:37 cdidier Exp $ */
2
 
 
3
1
#ifndef __XMPP_H
4
2
#define __XMPP_H
5
3
 
9
7
typedef struct _XMPP_NICK_REC XMPP_NICK_REC;
10
8
typedef struct _MUC_REC MUC_REC;
11
9
 
12
 
#define IS_XMPP_ITEM(rec) (IS_XMPP_CHANNEL(rec) || IS_XMPP_QUERY(rec))
13
10
#define XMPP_PROTOCOL_NAME "XMPP"
14
11
#define XMPP_PROTOCOL (chat_protocol_lookup(XMPP_PROTOCOL_NAME))
15
12
 
16
13
#define IRSSI_XMPP_PACKAGE "irssi-xmpp"
17
14
#define IRSSI_XMPP_VERSION "0.52"
18
15
 
 
16
extern char *pgp_passwd;
 
17
 
19
18
#endif