mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-06-05 21:29:23 -04:00

Rework of AuthSSL: cleanup and split up. * Split out independent SSL functions into sslfns.h / sslfns.cc * Reworked SSL certificate storage. * Reworked SignDataBin / VerifyDataBin (fixed memory leaks). * Removed funny code: /* cert->cert_info->key->pkey is NULL */ - just use X509_get_pubkey() instead. * Removed lots of old code. * Fixed up Mutex usage in AuthSSL - which was random. * Removed certificates from tlvSignature serialiser obj. * removed certificates from p3distrib messages. * Starting removing "unused parameter" compiler warnings. * Various related changes to make libretroshare compile. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@3222 b45a01b8-16f6-495d-af2f-9b41ad6348cc
52 lines
1.5 KiB
C++
52 lines
1.5 KiB
C++
/*
|
|
* libretroshare/src/pqi: pqilistener.h
|
|
*
|
|
* 3P/PQI network interface for RetroShare.
|
|
*
|
|
* Copyright 2004-2008 by Robert Fernie.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Library General Public
|
|
* License Version 2 as published by the Free Software Foundation.
|
|
*
|
|
* This library 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
|
|
* Library General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Library General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
* USA.
|
|
*
|
|
* Please report all bugs and problems to "retroshare@lunamutt.com".
|
|
*
|
|
*/
|
|
|
|
#ifndef MRK_PQI_GENERIC_LISTEN_HEADER
|
|
#define MRK_PQI_GENERIC_LISTEN_HEADER
|
|
|
|
// operating system specific network header.
|
|
#include "pqi/pqinetwork.h"
|
|
|
|
class pqilistener
|
|
{
|
|
public:
|
|
|
|
pqilistener() { return; }
|
|
virtual ~pqilistener() { return; }
|
|
|
|
virtual int tick() { return 1; }
|
|
virtual int status() { return 1; }
|
|
virtual int setListenAddr(struct sockaddr_in addr)
|
|
{
|
|
(void) addr; /* suppress unused parameter warning */
|
|
return 1;
|
|
}
|
|
virtual int setuplisten() { return 1; }
|
|
virtual int resetlisten() { return 1; }
|
|
|
|
};
|
|
|
|
|
|
#endif // MRK_PQI_GENERIC_LISTEN_HEADER
|