mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-12-17 18:43:50 +01:00
gcoap_fileserver: use uint8_t for szx value
This commit is contained in:
parent
00221818b6
commit
c6ba5d9180
@ -37,9 +37,9 @@ struct requestdata {
|
|||||||
/** 0-terminated expanded file name in the VFS */
|
/** 0-terminated expanded file name in the VFS */
|
||||||
char namebuf[COAPFILESERVER_PATH_MAX];
|
char namebuf[COAPFILESERVER_PATH_MAX];
|
||||||
uint32_t blocknum2;
|
uint32_t blocknum2;
|
||||||
unsigned int szx2; /* would prefer uint8_t but that's what coap_get_blockopt gives */
|
|
||||||
uint32_t etag;
|
uint32_t etag;
|
||||||
bool etag_sent;
|
bool etag_sent;
|
||||||
|
uint8_t szx2;
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user