~ubuntu-branches/ubuntu/karmic/libgrapple/karmic

« back to all changes in this revision

Viewing changes to src/grapple_connection.h

  • Committer: Bazaar Package Importer
  • Author(s): Lukas Fittl
  • Date: 2007-01-28 22:29:04 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070128222904-bid1uquufll00hrs
Tags: 0.9.1-0ubuntu1
* New upstream release.
* ABI changed, upstream forgot to change version
  - configure.in: Increment MICRO_VERSION
  - debian/control: Update package name

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
#include "grapple_structs.h"
29
29
#include "socket.h"
30
30
 
 
31
extern grapple_connection *connection_struct_aquire(void);
31
32
extern int connection_client_add(internal_client_data *,int,int);
32
33
extern int connection_server_add(internal_server_data *,socketbuf *);
33
34
extern int connection_client_rename(internal_client_data *,int,char *);
34
35
extern grapple_connection *connection_from_serverid(grapple_connection *,int);
35
36
extern void connection_struct_dispose(grapple_connection *);
 
37
extern grapple_connection *connection_link(grapple_connection *,
 
38
                                           grapple_connection *);
36
39
extern grapple_connection *connection_unlink(grapple_connection *,
37
40
                                           grapple_connection *);
38
41
extern int connection_client_remove_by_id(internal_client_data *,int);