openwrt_helloworld/shadowsocksr-libev/src/server/http_simple.h
2022-04-17 03:50:24 +08:00

22 lines
814 B
C

/*
* http_simple.h - Define shadowsocksR server's buffers and callbacks
*
* Copyright (C) 2015 - 2016, Break Wa11 <mmgac001@gmail.com>
*/
#ifndef _HTTP_SIMPLE_H
#define _HTTP_SIMPLE_H
obfs * http_simple_new_obfs();
void http_simple_dispose(obfs *self);
int http_simple_client_encode(obfs *self, char **pencryptdata, int datalength, size_t* capacity);
int http_simple_client_decode(obfs *self, char **pencryptdata, int datalength, size_t* capacity, int *needsendback);
int http_post_client_encode(obfs *self, char **pencryptdata, int datalength, size_t* capacity);
int http_simple_server_encode(obfs *self, char **pencryptdata, int datalength, size_t* capacity);
int http_simple_server_decode(obfs *self, char **pencryptdata, int datalength, size_t* capacity, int *needsendback);
#endif // _HTTP_SIMPLE_H