mirror of
https://github.com/profanity-im/profanity.git
synced 2024-12-04 14:46:46 -05:00
Renamed jabber.h -> xmpp.h
This commit is contained in:
parent
a9c629dd9e
commit
7dcb85c701
@ -1,5 +1,5 @@
|
||||
bin_PROGRAMS = profanity
|
||||
profanity_SOURCES = src/command.c src/contact.c src/history.c src/jabber.h \
|
||||
profanity_SOURCES = src/command.c src/contact.c src/history.c src/xmpp.h \
|
||||
src/preferences.c src/autocomplete.c src/status_bar.c \
|
||||
src/command.h src/contact.h src/history.h src/log.c src/preferences.h \
|
||||
src/autocomplete.h src/title_bar.c src/windows.c src/common.c \
|
||||
|
@ -35,7 +35,6 @@
|
||||
#include "contact_list.h"
|
||||
#include "chat_log.h"
|
||||
#include "history.h"
|
||||
#include "jabber.h"
|
||||
#include "jid.h"
|
||||
#include "log.h"
|
||||
#include "parser.h"
|
||||
@ -46,6 +45,7 @@
|
||||
#include "theme.h"
|
||||
#include "tinyurl.h"
|
||||
#include "ui.h"
|
||||
#include "xmpp.h"
|
||||
|
||||
typedef char*(*autocomplete_func)(char *);
|
||||
|
||||
|
@ -30,13 +30,13 @@
|
||||
#include "chat_session.h"
|
||||
#include "common.h"
|
||||
#include "contact_list.h"
|
||||
#include "jabber.h"
|
||||
#include "jid.h"
|
||||
#include "log.h"
|
||||
#include "preferences.h"
|
||||
#include "profanity.h"
|
||||
#include "muc.h"
|
||||
#include "stanza.h"
|
||||
#include "xmpp.h"
|
||||
|
||||
static struct _jabber_conn_t {
|
||||
xmpp_log_t *log;
|
||||
|
2
src/iq.c
2
src/iq.c
@ -29,9 +29,9 @@
|
||||
#include "common.h"
|
||||
#include "config.h"
|
||||
#include "contact_list.h"
|
||||
#include "jabber.h"
|
||||
#include "log.h"
|
||||
#include "stanza.h"
|
||||
#include "xmpp.h"
|
||||
|
||||
#define HANDLE(ns, type, func) xmpp_handler_add(conn, func, ns, STANZA_NAME_IQ, type, ctx)
|
||||
|
||||
|
@ -44,8 +44,8 @@
|
||||
#include "profanity.h"
|
||||
#include "muc.h"
|
||||
#include "theme.h"
|
||||
#include "jabber.h"
|
||||
#include "ui.h"
|
||||
#include "xmpp.h"
|
||||
|
||||
static log_level_t _get_log_level(char *log_level);
|
||||
static gboolean _process_input(char *inp);
|
||||
|
@ -23,7 +23,7 @@
|
||||
#ifndef PROFANITY_H
|
||||
#define PROFANITY_H
|
||||
|
||||
#include "jabber.h"
|
||||
#include "xmpp.h"
|
||||
|
||||
void prof_run(const int disable_tls, char *log_level);
|
||||
|
||||
|
2
src/ui.h
2
src/ui.h
@ -36,7 +36,7 @@
|
||||
#endif
|
||||
|
||||
#include "contact.h"
|
||||
#include "jabber.h"
|
||||
#include "xmpp.h"
|
||||
#include "jid.h"
|
||||
|
||||
#define INP_WIN_MAX 1000
|
||||
|
@ -1,5 +1,5 @@
|
||||
/*
|
||||
* jabber.h
|
||||
* xmpp.h
|
||||
*
|
||||
* Copyright (C) 2012, 2013 James Booth <boothj5@gmail.com>
|
||||
*
|
||||
@ -20,8 +20,8 @@
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef JABBER_H
|
||||
#define JABBER_H
|
||||
#ifndef XMPP_H
|
||||
#define XMPP_H
|
||||
|
||||
#include <strophe.h>
|
||||
|
Loading…
Reference in New Issue
Block a user