2012-06-18 16:56:43 +03:00
|
|
|
/*
|
|
|
|
* fw/dispatch.h - Wireless protocol dispatcher
|
|
|
|
*
|
|
|
|
* Written 2012 by Werner Almesberger
|
|
|
|
* Copyright 2012 Werner Almesberger
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DISPATCH_H
|
|
|
|
#define DISPATCH_H
|
|
|
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
|
2012-06-19 00:22:56 +03:00
|
|
|
#include "proto.h"
|
|
|
|
|
2012-06-18 16:56:43 +03:00
|
|
|
|
|
|
|
struct handler {
|
|
|
|
enum pck_type type;
|
2012-06-21 00:37:13 +03:00
|
|
|
bool (*first)(uint8_t limit, const uint8_t *payload);
|
2012-06-18 16:56:43 +03:00
|
|
|
bool (*more)(uint8_t seq, uint8_t limit, const uint8_t *payload);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2012-06-20 16:30:40 +03:00
|
|
|
extern struct handler image_handler;
|
2012-06-19 02:31:20 +03:00
|
|
|
extern struct handler reset_handler;
|
|
|
|
|
2012-06-20 16:30:40 +03:00
|
|
|
|
2012-06-18 16:56:43 +03:00
|
|
|
bool dispatch(const uint8_t *buf, uint8_t len, const struct handler **protos);
|
|
|
|
|
|
|
|
#endif /* !PROTO_H */
|