Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/majn/telegram-purple.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormjentsch <mtthsjntsch@gmail.com>2015-07-11 18:44:49 +0300
committermjentsch <mtthsjntsch@gmail.com>2015-07-11 18:44:49 +0300
commited1f91123ef9cf0b797557a322aaca0605de17ce (patch)
tree30c2197b2831fb11643429fffd20458bc8f60be2 /tgp-net.c
parent51064e06b4b09703ccbdd24c3257005d9ccc0bf3 (diff)
remove unused functions and clean up
Diffstat (limited to 'tgp-net.c')
-rw-r--r--tgp-net.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/tgp-net.c b/tgp-net.c
index 7e3412b..22b60e0 100644
--- a/tgp-net.c
+++ b/tgp-net.c
@@ -118,7 +118,6 @@ static void delete_connection_buffer (struct connection_buffer *b) {
}
int tgln_write_out (struct connection *c, const void *_data, int len) {
- struct tgl_state *TLS = c->TLS;
debug ( "write_out: %d bytes\n", len);
const unsigned char *data = _data;
if (!len) { return 0; }
@@ -231,7 +230,6 @@ static void rotate_port (struct connection *c) {
static void conn_try_read (gpointer arg, gint source, PurpleInputCondition cond) {
struct connection *c = arg;
- struct tgl_state *TLS = c->TLS;
debug ("Try read. Fd = %d\n", c->fd);
try_read (c);
}
@@ -252,7 +250,6 @@ static void conn_try_write (gpointer arg, gint source, PurpleInputCondition cond
static void net_on_connected (gpointer arg, gint fd, const gchar *error_message) {
struct connection *c = arg;
- struct tgl_state *TLS = c->TLS;
debug ("connect result: %d\n", fd);
if (c->fail_ev >= 0) {
@@ -377,7 +374,6 @@ static void fail_connection (struct connection *c) {
//extern FILE *log_net_f;
static void try_write (struct connection *c) {
- struct tgl_state *TLS = c->TLS;
debug ("try write: fd = %d\n", c->fd);
int x = 0;
while (c->out_head) {
@@ -447,7 +443,6 @@ static void try_rpc_read (struct connection *c) {
}
static void try_read (struct connection *c) {
- struct tgl_state *TLS = c->TLS;
debug ( "try read: fd = %d\n", c->fd);
if (!c->in_tail) {
c->in_head = c->in_tail = new_connection_buffer (1 << 20);