Raw send support.

This commit is contained in:
Ian Gulliver
2016-02-17 20:14:44 -08:00
parent 7d39421966
commit 3801b2c9ce
3 changed files with 40 additions and 0 deletions

5
send.c
View File

@@ -13,6 +13,7 @@
#include "beast.h"
#include "json.h"
#include "raw.h"
#include "stats.h"
struct send {
@@ -37,6 +38,10 @@ struct serializer {
.name = "json",
.serialize = json_serialize,
},
{
.name = "raw",
.serialize = raw_serialize,
},
{
.name = "stats",
.serialize = stats_serialize,