/usr/include/zorp/streamssl.h is in libzorpll-dev 3.9.1.3-2.
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 | /***************************************************************************
*
* This file is covered by a dual licence. You can choose whether you
* want to use it according to the terms of the GNU GPL version 2, or
* under the terms of Zorp Professional Firewall System EULA located
* on the Zorp installation CD.
*
* $Id: streamssl.h,v 1.4 2003/04/08 13:32:29 sasa Exp $
*
***************************************************************************/
#ifndef ZORP_STREAMSSL_H_INCLUDED
#define ZORP_STREAMSSL_H_INCLUDED
#include <zorp/ssl.h>
#ifdef __cplusplus
extern "C" {
#endif
#define ZST_CTRL_SSL_SET_SESSION (0x01) | ZST_CTRL_SSL_OFS
ZStream * z_stream_ssl_new(ZStream *stream, ZSSLSession *ssl);
static inline void
z_stream_ssl_set_session(ZStream *self, ZSSLSession *ssl)
{
z_stream_ctrl(self, ZST_CTRL_SSL_SET_SESSION, ssl, sizeof(&ssl));
}
#ifdef __cplusplus
}
#endif
#endif /* ZORP_GIOSSL_H_INCLUDED */
|