about summary refs log tree commit diff stats
path: root/src/xmpp/connection.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-05-05 22:10:10 +0100
committerJames Booth <boothj5@gmail.com>2016-05-05 22:10:10 +0100
commitf6fa63b374cdc07084a472a2067546879809ec89 (patch)
tree4fd7b99058a57d5c33b535c8105f02fd1242a505 /src/xmpp/connection.h
parent0c842578711b3471902f08e55b77f270d388d4fb (diff)
downloadprofani-tty-f6fa63b374cdc07084a472a2067546879809ec89.tar.gz
Renamed connection.c -> session.c
Diffstat (limited to 'src/xmpp/connection.h')
-rw-r--r--src/xmpp/connection.h61
1 files changed, 0 insertions, 61 deletions
diff --git a/src/xmpp/connection.h b/src/xmpp/connection.h
deleted file mode 100644
index f964aca3..00000000
--- a/src/xmpp/connection.h
+++ /dev/null
@@ -1,61 +0,0 @@
-/*
- * connection.h
- *
- * Copyright (C) 2012 - 2016 James Booth <boothj5@gmail.com>
- *
- * This file is part of Profanity.
- *
- * Profanity is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- *
- * Profanity 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 General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Profanity.  If not, see <http://www.gnu.org/licenses/>.
- *
- * In addition, as a special exception, the copyright holders give permission to
- * link the code of portions of this program with the OpenSSL library under
- * certain conditions as described in each individual source file, and
- * distribute linked combinations including the two.
- *
- * You must obey the GNU General Public License in all respects for all of the
- * code used other than OpenSSL. If you modify file(s) with this exception, you
- * may extend this exception to your version of the file(s), but you are not
- * obligated to do so. If you do not wish to do so, delete this exception
- * statement from your version. If you delete this exception statement from all
- * source files in the program, then also delete it here.
- *
- */
-
-#ifndef XMPP_CONNECTION_H
-#define XMPP_CONNECTION_H
-
-#include "config.h"
-
-#ifdef HAVE_LIBMESODE
-#include <mesode.h>
-#endif
-#ifdef HAVE_LIBSTROPHE
-#include <strophe.h>
-#endif
-
-#include "resource.h"
-
-typedef int(*ProfIdCallback)(xmpp_stanza_t *const stanza, void *const userdata);
-
-xmpp_conn_t* connection_get_conn(void);
-xmpp_ctx_t* connection_get_ctx(void);
-void connection_set_priority(int priority);
-void connection_set_presence_message(const char *const message);
-void connection_add_available_resource(Resource *resource);
-void connection_remove_available_resource(const char *const resource);
-void connection_autoping_fail(void);
-GSList* connection_get_disco_items(void);
-void connection_set_disco_items(GSList *disco_items);
-
-#endif