Source: ../../libxipc/finder-server.hh
|
|
|
|
// -*- c-basic-offset: 4 -*-
// Copyright (c) 2001,2002 International Computer Science Institute
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software")
// to deal in the Software without restriction, subject to the conditions
// listed in the Xorp LICENSE file. These conditions include: you must
// preserve this copyright notice, and you cannot mention the copyright
// holders in advertising related to the Software without their permission.
// The Software is provided WITHOUT ANY WARRANTY, EXPRESS OR IMPLIED. This
// notice is a summary of the Xorp LICENSE file; the license in that file is
// legally binding.
// $Id: finder-server.hh,v 1.1.1.1 2002/12/11 23:56:03 hodson Exp $
#ifndef __FINDER_SERVER_HH__
#define __FINDER_SERVER_HH__
#include <sys/time.h>
#include <map>
#include <list>
#include <string>
#include "config.h"
#include "finder-ipc.hh"
#include "libxorp/eventloop.hh"
class FinderConnectionInfo;
class FinderServer {
public:
FinderServer(EventLoop& e, const char* auth_key,
int port = FINDER_TCP_DEFAULT_PORT)
throw (FinderTCPServerIPCFactory::FactoryError);
FinderServer(EventLoop& e, int port = FINDER_TCP_DEFAULT_PORT)
throw (FinderTCPServerIPCFactory::FactoryError);
~FinderServer();
const char* set_auth_key(const char* key);
const char* auth_key();
void add_connection(FinderConnectionInfo* fci);
void remove_connection(const FinderConnectionInfo* fci);
uint32_t connection_count();
const char* lookup_service(const char* service);
protected:
static void connect_hook(FinderTCPIPCService *s, void* thunked_server);
void byebye_connections();
EventLoop& _event_loop;
FinderTCPServerIPCFactory _ipc_factory;
string _auth_key;
list<FinderConnectionInfo*> _connections;
typedef list<FinderConnectionInfo*>::iterator connection_iterator;
friend class FinderConnectionInfo;
};
#endif // __FINDER_SERVER_HH__
Generated by: pavlin on possum.icir.org on Wed Dec 11 16:50:42 2002, using kdoc 2.0a54+XORP. |