Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
Xiph.Org
Icecast-Server
Commits
1f8d19cb
Commit
1f8d19cb
authored
Sep 13, 2018
by
Philipp Schafft
🦁
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup: Use (auth_stack_t) not (struct auth_stack_tag)
parent
78805226
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
src/auth.h
src/auth.h
+0
-2
src/cfgfile.h
src/cfgfile.h
+2
-2
src/icecasttypes.h
src/icecasttypes.h
+1
-0
No files found.
src/auth.h
View file @
1f8d19cb
...
...
@@ -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
);
...
...
src/cfgfile.h
View file @
1f8d19cb
...
...
@@ -117,7 +117,7 @@ typedef struct _mount_proxy {
struct
event_registration_tag
*
event
;
char
*
cluster_password
;
struct
auth_stack_t
ag
*
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_t
ag
*
authstack
;
auth_stack_t
*
authstack
;
struct
event_registration_tag
*
event
;
...
...
src/icecasttypes.h
View file @
1f8d19cb
...
...
@@ -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] ]--- */
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment