1
0
mirror of https://gitlab.xiph.org/xiph/icecast-server.git synced 2024-06-23 06:25:24 +00:00

Cleanup: Use (auth_stack_t) not (struct auth_stack_tag)

This commit is contained in:
Philipp Schafft 2018-09-13 11:09:16 +00:00
parent 7880522650
commit 1f8d19cb40
3 changed files with 3 additions and 4 deletions

View File

@ -131,8 +131,6 @@ struct auth_tag
char *role;
};
typedef struct auth_stack_tag auth_stack_t;
/* prototypes for auths that do not need own header file */
int auth_get_anonymous_auth(auth_t *auth, config_options_t *options);
int auth_get_static_auth(auth_t *auth, config_options_t *options);

View File

@ -117,7 +117,7 @@ typedef struct _mount_proxy {
struct event_registration_tag *event;
char *cluster_password;
struct auth_stack_tag *authstack;
auth_stack_t *authstack;
unsigned int max_listener_duration;
char *stream_name;
@ -211,7 +211,7 @@ struct ice_config_tag {
char *shoutcast_mount;
char *shoutcast_user;
struct auth_stack_tag *authstack;
auth_stack_t *authstack;
struct event_registration_tag *event;

View File

@ -43,6 +43,7 @@ typedef struct acl_tag acl_t;
/* ---[ auth.[ch] ]--- */
typedef struct auth_tag auth_t;
typedef struct auth_stack_tag auth_stack_t;
/* ---[ cfgfile.[ch] ]--- */