aboutsummaryrefslogtreecommitdiff
path: root/src/common/include/proto/token.h
blob: 9ec1aff7ae2fbc720e413eb2b063ebe801acd959 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#pragma once

#include <stdint.h>
#include <stddef.h>

#define TOKEN_LENGTH 16
typedef struct {
	char bytes[TOKEN_LENGTH];
} token_t;

/* vim: set ts=4 sw=4 tw=0 noet :*/