mirror of
https://github.com/lwip-tcpip/lwip.git
synced 2025-04-10 06:44:18 +00:00
improved CHAP structure size, however there is not much we can do
This commit is contained in:
parent
0234c62c3e
commit
4bbf443ba2
@ -145,7 +145,7 @@ struct chap_digest_type {
|
|||||||
*/
|
*/
|
||||||
#if CHAP_SUPPORT
|
#if CHAP_SUPPORT
|
||||||
typedef struct chap_client_state {
|
typedef struct chap_client_state {
|
||||||
int flags;
|
u8_t flags;
|
||||||
char *name;
|
char *name;
|
||||||
struct chap_digest_type *digest;
|
struct chap_digest_type *digest;
|
||||||
unsigned char priv[64]; /* private area for digest's use */
|
unsigned char priv[64]; /* private area for digest's use */
|
||||||
@ -153,7 +153,7 @@ typedef struct chap_client_state {
|
|||||||
|
|
||||||
#if PPP_SERVER
|
#if PPP_SERVER
|
||||||
static struct chap_server_state {
|
static struct chap_server_state {
|
||||||
int flags;
|
u8_t flags;
|
||||||
int id;
|
int id;
|
||||||
char *name;
|
char *name;
|
||||||
struct chap_digest_type *digest;
|
struct chap_digest_type *digest;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user