Move files around

This commit is contained in:
Alex Hultman
2018-09-15 05:04:34 +02:00
parent 527089c621
commit eee6e97fda
13 changed files with 13 additions and 13 deletions
+19
View File
@@ -0,0 +1,19 @@
#ifndef LOOPDATA_H
#define LOOPDATA_H
struct LoopData {
private:
public:
/* Good 16k for SSL perf. */
static const int CORK_BUFFER_SIZE = 16 * 1024;
char *corkBuffer = new char[CORK_BUFFER_SIZE];
int corkOffset = 0;
bool corked = false;
};
#endif // LOOPDATA_H