mirror of
https://github.com/pygos/init.git
synced 2024-11-22 03:09:46 +01:00
Use fixed size integer for init socket request
Signed-off-by: David Oberhollenzer <goliath@infraroot.at>
This commit is contained in:
parent
72c02308cd
commit
affe9e4b88
1 changed files with 3 additions and 1 deletions
|
@ -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 {
|
||||
|
|
Loading…
Reference in a new issue