pidgin/purple-plugin-pack

Add the turtles target to keep the foot clan at bay
default tip
13 months ago, Gary Kramlich
63ad7e4f10b4
Add the turtles target to keep the foot clan at bay

Testing Done:
Ran `ninja turtles` and verified it worked correctly.

Reviewed at https://reviews.imfreedom.org/r/2409/
/*
* libning
*
* libning is the property of its developers. See the COPYRIGHT file
* for more details.
*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef NING_CONNECTION_H
#define NING_CONNECTION_H
#include "ning.h"
typedef void (*NingProxyCallbackFunc)
(NingAccount *na, gchar *data, gsize data_len, gpointer user_data);
/*
* This is a bitmask.
*/
typedef enum
{
NING_METHOD_GET = 0x0001,
NING_METHOD_POST = 0x0002,
NING_METHOD_SSL = 0x0004
} NingMethod;
typedef struct _NingConnection NingConnection;
struct _NingConnection {
NingAccount *na;
NingMethod method;
gchar *hostname;
GString *request;
NingProxyCallbackFunc callback;
gpointer user_data;
char *rx_buf;
size_t rx_len;
PurpleProxyConnectData *connect_data;
PurpleSslConnection *ssl_conn;
int fd;
guint input_watcher;
gboolean connection_keepalive;
time_t request_time;
};
void ning_connection_destroy(NingConnection *okcconn);
void ning_post_or_get(NingAccount *oca, NingMethod method,
const gchar *host, const gchar *url, const gchar *postdata,
NingProxyCallbackFunc callback_func, gpointer user_data,
gboolean keepalive);
#endif /* NING_CONNECTION_H */