/* * http_simple.h - Define shadowsocksR server's buffers and callbacks * * Copyright (C) 2015 - 2016, Break Wa11 */ #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