60 lines
1.8 KiB
C
60 lines
1.8 KiB
C
/*!
|
|
* @file pgp.h
|
|
*
|
|
* vim: expandtab:ts=2:sts=2:sw=2
|
|
*
|
|
* @authors
|
|
* Copyright (C) 2020 Anoxinon e.V.
|
|
*
|
|
* @copyright
|
|
* This file is part of xmppc.
|
|
*
|
|
* xmppc 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.
|
|
*
|
|
* xmppc 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 Foobar. If not, see <http://www.gnu.org/licenses/>.
|
|
*
|
|
* German
|
|
*
|
|
* Diese Datei ist Teil von xmppc.
|
|
*
|
|
* xmppc ist Freie Software: Sie können es unter den Bedingungen
|
|
* der GNU General Public License, wie von der Free Software Foundation,
|
|
* Version 3 der Lizenz oder (nach Ihrer Wahl) jeder neueren
|
|
* veröffentlichten Version, weiter verteilen und/oder modifizieren.
|
|
*
|
|
* xmppc wird in der Hoffnung, dass es nützlich sein wird, aber
|
|
* OHNE JEDE GEWÄHRLEISTUNG, bereitgestellt; sogar ohne die implizite
|
|
* Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
|
|
* Siehe die GNU General Public License für weitere Details.
|
|
*
|
|
* Sie sollten eine Kopie der GNU General Public License zusammen mit diesem
|
|
* Programm erhalten haben. Wenn nicht, siehe <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
/*!
|
|
* \page module-pgp PGP
|
|
* \brief xmppc PGP Module
|
|
*
|
|
* Commands
|
|
* - chat <jdi> <message>
|
|
*
|
|
*/
|
|
|
|
#ifndef XMPPC_PGP_H__
|
|
#define XMPPC_PGP_H__
|
|
|
|
#include "xmppc.h"
|
|
|
|
void pgp_execute_command(xmppc_t *xmppc, int agrc, char *argv[]);
|
|
|
|
#endif // XMPPC_PGP_H__
|