You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
434 B
27 lines
434 B
#ifndef __STREAM_H__
|
|
#define __STREAM_H__
|
|
|
|
#include <sys/types.h>
|
|
#include <openssl/ssl.h>
|
|
|
|
#include "class.h"
|
|
|
|
typedef enum e_StreamHandleType {
|
|
STREAM_FD = 0,
|
|
STREAM_SSL
|
|
} StreamHandleType;
|
|
|
|
CLASS(Stream) {
|
|
StreamHandleType type;
|
|
union {
|
|
int fd;
|
|
SSL * ssl;
|
|
} handle;
|
|
};
|
|
|
|
ssize_t streamRead(Stream, void *, size_t);
|
|
ssize_t streamWrite(Stream, void *, size_t);
|
|
|
|
#endif // __STREAM_H__
|
|
|
|
// vim: set ts=4 sw=4:
|