LINCServer

Name

LINCServer -- A listening server object

Synopsis



typedef     LINCServer;
gboolean    linc_server_setup               (LINCServer *cnx,
                                             const char *proto_name,
                                             const char *local_host_info,
                                             const char *local_serv_info,
                                             LINCConnectionOptions create_options);

Description

Details

LINCServer

typedef struct {
	GObject  parent;
	int      fd;
	GMutex  *mutex;
	char    *local_host_info;
	char    *local_serv_info;

	const LINCProtocolInfo *proto;
	LincWatch              *tag;
	/* Options that incoming connections are created with */
	LINCConnectionOptions   create_options;
	GSList                 *connections;
	gpointer                priv;
} LINCServer;


linc_server_setup ()

gboolean    linc_server_setup               (LINCServer *cnx,
                                             const char *proto_name,
                                             const char *local_host_info,
                                             const char *local_serv_info,
                                             LINCConnectionOptions create_options);

cnx : 
proto_name : 
local_host_info : 
local_serv_info : 
create_options : 
Returns :