Split backend and outgoing. Rename backend -> receive, client -> send.

This commit is contained in:
Ian Gulliver
2016-02-17 17:19:57 -08:00
parent ae5b4c1ce4
commit 5671f37f8a
16 changed files with 464 additions and 429 deletions

10
receive.h Normal file
View File

@@ -0,0 +1,10 @@
#pragma once
#include <stdbool.h>
#include "common.h"
#define PARSER_STATE_LEN 256
void receive_new(int, void *);
void receive_print_usage();