1
0
Fork 0
mirror of https://github.com/pygos/init.git synced 2024-05-08 23:06:15 +02:00

Use fixed size integer for init socket request

Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
This commit is contained in:
David Oberhollenzer 2019-03-25 22:54:38 +01:00
parent 72c02308cd
commit affe9e4b88

View file

@ -2,6 +2,8 @@
#ifndef INITSOCK_H
#define INITSOCK_H
#include <stdint.h>
#include "config.h"
#include "service.h"
@ -20,7 +22,7 @@ typedef enum {
} E_SERVICE_STATE;
typedef struct {
E_INIT_REQUEST rq;
uint8_t rq;
} init_request_t;
typedef struct {