41 lines
994 B
C
41 lines
994 B
C
#ifndef HELLO_H
|
|
#define HELLO_H
|
|
|
|
#include <stdbool.h>
|
|
#include <stdint.h>
|
|
#include "buffer.h"
|
|
|
|
static const uint8_t METHOD_NO_AUTHENTICATION_REQURED = 0x00;
|
|
static const uint8_t METHOD_NO_ACCEPTABLE_METHODS = 0xFF;
|
|
|
|
enum hello_state {
|
|
hello_version,
|
|
hello_nmethods,
|
|
hello_methods,
|
|
hello_done,
|
|
hello_error_unsupported_version,
|
|
};
|
|
|
|
struct hello_parser {
|
|
void (* on_authentication_method) (struct hello_parser * parser, const uint8_t method);
|
|
void * data;
|
|
enum hello_state state;
|
|
uint8_t remaining;
|
|
};
|
|
|
|
void hello_parser_init(struct hello_parser *p);
|
|
|
|
enum hello_state hello_parser_feed(struct hello_parser * p, uint8_t b);
|
|
|
|
enum hello_state hello_consume(buffer * b, struct hello_parser * p, bool * errored);
|
|
|
|
bool hello_is_done(const enum hello_state state, bool * errored);
|
|
|
|
extern const char * hello_error(const struct hello_parser *p);
|
|
|
|
void hello_parser_close(struct hello_parser *p);
|
|
|
|
extern int hello_marshall(buffer * b, const uint8_t method);
|
|
|
|
#endif
|