Some clean-ups

This commit is contained in:
Alex Hultman
2018-09-15 05:31:42 +02:00
parent eee6e97fda
commit 883bdfe7d7
11 changed files with 41 additions and 53 deletions
+1 -3
View File
@@ -2,18 +2,16 @@
#define LOOPDATA_H
struct LoopData {
private:
public:
/* Good 16k for SSL perf. */
static const int CORK_BUFFER_SIZE = 16 * 1024;
/* Cork data */
char *corkBuffer = new char[CORK_BUFFER_SIZE];
int corkOffset = 0;
bool corked = false;
};
#endif // LOOPDATA_H