diff options
Diffstat (limited to 'src/sp/protocol/bus0')
| -rw-r--r-- | src/sp/protocol/bus0/bus.c | 12 | ||||
| -rw-r--r-- | src/sp/protocol/bus0/bus_test.c | 3 |
2 files changed, 8 insertions, 7 deletions
diff --git a/src/sp/protocol/bus0/bus.c b/src/sp/protocol/bus0/bus.c index 4f946365..0bbfb031 100644 --- a/src/sp/protocol/bus0/bus.c +++ b/src/sp/protocol/bus0/bus.c @@ -8,11 +8,13 @@ // found online at https://opensource.org/licenses/MIT. // -#include <stdbool.h> -#include <stdlib.h> - -#include "core/nng_impl.h" -#include <stdio.h> +#include "../../../core/aio.h" +#include "../../../core/defs.h" +#include "../../../core/lmq.h" +#include "../../../core/message.h" +#include "../../../core/pipe.h" +#include "../../../core/pollable.h" +#include "../../../core/protocol.h" // Bus protocol. The BUS protocol, each peer sends a message to its peers. // However, bus protocols do not "forward" (absent a device). So in order diff --git a/src/sp/protocol/bus0/bus_test.c b/src/sp/protocol/bus0/bus_test.c index b1141d93..d7f38255 100644 --- a/src/sp/protocol/bus0/bus_test.c +++ b/src/sp/protocol/bus0/bus_test.c @@ -7,8 +7,7 @@ // found online at https://opensource.org/licenses/MIT. // -#include "nng/nng.h" -#include <nuts.h> +#include "../../../testing/nuts.h" #define SECOND 1000 |
