File: slplink.h

package info (click to toggle)
pidgin-nateon 0.0.0.svn147-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 2,616 kB
  • ctags: 779
  • sloc: sh: 9,081; ansic: 6,639; makefile: 110
file content (96 lines) | stat: -rw-r--r-- 3,677 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
/**
 * @file slplink.h NATEONSLP Link support
 *
 * purple
 *
 * Purple is the legal property of its developers, whose names are too numerous
 * to list here.  Please refer to the COPYRIGHT file distributed with this
 * source distribution.
 *
 * 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 2 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
#ifndef _NATEON_SLPLINK_H_
#define _NATEON_SLPLINK_H_

typedef struct _NateonSlpLink NateonSlpLink;

//#include "directconn.h"
//#include "slpcall.h"
//#include "slpmsg.h"

#include "switchboard.h"

//#include "ft.h"

#include "session.h"

//typedef void (*NateonSlpCb)(NateonSlpCall *slpcall,
//						 const guchar *data, gsize size);
//typedef void (*NateonSlpEndCb)(NateonSlpCall *slpcall, NateonSession *session);

struct _NateonSlpLink
{
	NateonSession *session;
	NateonSwitchBoard *swboard;

	char *local_user;
	char *remote_user;

//	int slp_seq_id;
//
//	NateonDirectConn *directconn;
//
//	GList *slp_calls;
//	GList *slp_sessions;
//	GList *slp_msgs;
//
//	GQueue *slp_msg_queue;
};

NateonSlpLink *nateon_slplink_new(NateonSession *session, const char *username);
//void nateon_slplink_destroy(NateonSlpLink *slplink);
NateonSlpLink *nateon_session_find_slplink(NateonSession *session, const char *who);
NateonSlpLink *nateon_session_get_slplink(NateonSession *session, const char *username);
//NateonSlpSession *nateon_slplink_find_slp_session(NateonSlpLink *slplink,
//											long session_id);
//void nateon_slplink_add_slpcall(NateonSlpLink *slplink, NateonSlpCall *slpcall);
//void nateon_slplink_remove_slpcall(NateonSlpLink *slplink, NateonSlpCall *slpcall);
//NateonSlpCall *nateon_slplink_find_slp_call(NateonSlpLink *slplink,
//									  const char *id);
//NateonSlpCall *nateon_slplink_find_slp_call_with_session_id(NateonSlpLink *slplink, long id);
//void nateon_slplink_send_msg(NateonSlpLink *slplink, NateonMessage *msg);
//void nateon_slplink_release_slpmsg(NateonSlpLink *slplink,
//								NateonSlpMessage *slpmsg);
//void nateon_slplink_queue_slpmsg(NateonSlpLink *slplink, NateonSlpMessage *slpmsg);
//void nateon_slplink_send_slpmsg(NateonSlpLink *slplink,
//							 NateonSlpMessage *slpmsg);
//void nateon_slplink_unleash(NateonSlpLink *slplink);
//void nateon_slplink_send_ack(NateonSlpLink *slplink, NateonMessage *msg);
//void nateon_slplink_process_msg(NateonSlpLink *slplink, NateonMessage *msg);
//NateonSlpMessage *nateon_slplink_message_find(NateonSlpLink *slplink, long session_id, long id);
//void nateon_slplink_append_slp_msg(NateonSlpLink *slplink, NateonSlpMessage *slpmsg);
//void nateon_slplink_remove_slp_msg(NateonSlpLink *slplink,
//								NateonSlpMessage *slpmsg);
//void nateon_slplink_request_ft(NateonSlpLink *slplink, PurpleXfer *xfer);
//
//void nateon_slplink_request_object(NateonSlpLink *slplink,
//								const char *info,
//								NateonSlpCb cb,
//								NateonSlpEndCb end_cb,
//								const NateonObject *obj);
//
//NateonSlpCall *nateon_slp_process_msg(NateonSlpLink *slplink, NateonSlpMessage *slpmsg);

#endif /* _NATEON_SLPLINK_H_ */