mirror of
https://github.com/owntone/owntone-server.git
synced 2025-01-26 14:13:18 -05:00
Turn flags into bitfields to reduce struct sizes
This commit is contained in:
parent
9cb4aaa921
commit
51f879cb32
@ -84,9 +84,9 @@ struct raop_session
|
||||
struct evrtsp_connection *ctrl;
|
||||
|
||||
enum raop_session_state state;
|
||||
int req_in_flight;
|
||||
int req_has_auth;
|
||||
int encrypt;
|
||||
unsigned req_in_flight:1;
|
||||
unsigned req_has_auth:1;
|
||||
unsigned encrypt:1;
|
||||
|
||||
int cseq;
|
||||
char *session;
|
||||
|
@ -28,11 +28,11 @@ struct raop_device
|
||||
short v4_port;
|
||||
short v6_port;
|
||||
|
||||
char selected;
|
||||
char advertised;
|
||||
char encrypt;
|
||||
unsigned selected:1;
|
||||
unsigned advertised:1;
|
||||
unsigned encrypt:1;
|
||||
|
||||
char has_password;
|
||||
unsigned has_password:1;
|
||||
const char *password;
|
||||
|
||||
struct raop_session *session;
|
||||
|
Loading…
x
Reference in New Issue
Block a user