/usr/include/dclib-0.3/dclib/cclientssl.h is in libdc-dev 0.3.24~svn3121-2.1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /***************************************************************************
cclientssl.h - description
-------------------
begin : Sat Dec 7 2002
copyright : (C) 2002-2003 by Mathias Küster
email : mathen@users.berlios.de
***************************************************************************/
/***************************************************************************
* *
* 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. *
* *
***************************************************************************/
#ifndef CCLIENTSSL_H
#define CCLIENTSSL_H
/**
*@author Mathias Küster
*
* Class for the encrypted private chat dclib system.
* Not really a protocol extension, just special private chat messages
* for a client to interpret.
*/
#include <dclib/dcos.h>
#include <dclib/core/cssl.h>
#include <dclib/core/cstringlist.h>
class CClient;
class CMessagePrivateChat;
class CClientSSL : public CSSL {
public:
/** */
CClientSSL();
/** */
virtual ~CClientSSL();
/** */
void PrivateChat( CClient * client, CMessagePrivateChat * msg );
/** */
void Init();
/** */
CString EncryptMessage( CClient * client, CString nick, CString message );
/** */
void LeaveHub( CClient * client, CString nick );
private:
/** */
CStringList<CSSLObject> * m_pCryptPrivateMessageList;
};
#endif
|