search for: auth_t

Displaying 9 results from an estimated 9 matches for "auth_t".

Did you mean: auth_
2019 Jan 29
0
Icecast Digest, Vol 175, Issue 11
...;> specific authenticators for client 0x560ccad1bb00. > [2019-01-28 21:19:20] DBUG connection/_handle_authentication_mount_default Trying <mount type="default"> specific authenticators for client 0x560ccad1bb00. > [2019-01-28 21:19:20] DBUG auth/auth_addref ...refcount on auth_t (null) is now 2 > [2019-01-28 21:19:20] DBUG auth/auth_add_client Trying to add client 0x560ccad1bb00 to auth 0x560ccad17ad0's (role legacy-global-source) queue. > [2019-01-28 21:19:20] DBUG auth/auth_addref ...refcount on auth_t (null) is now 3 > [2019-01-28 21:19:20] INFO auth/aut...
2019 Feb 03
1
YP listings in version 2.5 beta
...ecific authenticators for client 0x560ccad1bb00. >> [2019-01-28 21:19:20] DBUG connection/_handle_authentication_mount_default Trying <mount type="default"> specific authenticators for client 0x560ccad1bb00. >> [2019-01-28 21:19:20] DBUG auth/auth_addref ...refcount on auth_t (null) is now 2 >> [2019-01-28 21:19:20] DBUG auth/auth_add_client Trying to add client 0x560ccad1bb00 to auth 0x560ccad17ad0's (role legacy-global-source) queue. >> [2019-01-28 21:19:20] DBUG auth/auth_addref ...refcount on auth_t (null) is now 3 >> [2019-01-28 21:19:20] I...
2018 Aug 24
5
Client auth failed with ""
Hello, We are using url authentication and getting the item bellow at the log: [2018-08-24 23:26:05] INFO auth_url/url_add_listener client auth (http://127.0.0.1:8001/listener/add) failed with "" I put try/catch and reviewed all my code ensure always return a proper status and header error code, so what trigger this kind of error? Regards, Thiago --------------
2019 Jan 29
0
Icecast Digest, Vol 175, Issue 11
...;> specific authenticators for client 0x560ccad1bb00. > [2019-01-28 21:19:20] DBUG connection/_handle_authentication_mount_default Trying <mount type="default"> specific authenticators for client 0x560ccad1bb00. > [2019-01-28 21:19:20] DBUG auth/auth_addref ...refcount on auth_t (null) is now 2 > [2019-01-28 21:19:20] DBUG auth/auth_add_client Trying to add client 0x560ccad1bb00 to auth 0x560ccad17ad0's (role legacy-global-source) queue. > [2019-01-28 21:19:20] DBUG auth/auth_addref ...refcount on auth_t (null) is now 3 > [2019-01-28 21:19:20] INFO auth/aut...
2018 Aug 29
0
Icecast is shutdown / client auth failed with ""
...BUG auth/add_listener_to_source max on /alphafmsp is 750 (cur 750) [2018-08-29 11:49:10] DBUG fserve/fserve_add_client Adding client to file serving engine [2018-08-29 11:49:10] DBUG fserve/fserve_add_pending fserve handler waking up [2018-08-29 11:49:10] DBUG auth/auth_release ...refcount on auth_t /alphafmsp is now 751 [2018-08-29 11:49:10] INFO auth/auth_new_listener client 3070 failed [2018-08-29 11:49:10] DBUG fserve/fserv_thread_function fserve handler exit [2018-08-29 11:49:10] DBUG stats/modify_node_event update global client_connections (2719) [2018-08-29 11:49:10] DBUG stats/m...
2019 Jan 27
2
YP listings in version 2.5 beta
Hi, I apologise if this has been raised before. I’m finding that with the below settings enabled in my icecast.xml file, YP directory listings work for me when using icecast 2.4.4 but listings aren’t working for me with the same config settings in version 2.5. <directory> <yp-url-timeout>15</yp-url-timeout>
2020 Mar 13
0
Empty auth error message, URL auth problems on Windows Server
...separate logging issue. In the server's error log: [2020-03-13 16:59:46] DBUG connection/connection.c alias has made /player/ > into /player/index.html > [2020-03-13 16:59:46] INFO auth/auth.c adding client for authentication > [2020-03-13 16:59:46] DBUG auth/auth.c ...refcount on auth_t (default > mount) is now 2 > [2020-03-13 16:59:46] INFO auth/auth.c auth on (default mount) has 1 > pending > [2020-03-13 16:59:46] DBUG auth/auth.c 1 client(s) pending on (default > mount) > [2020-03-13 16:59:46] DBUG stats/stats.c update global clients (2) > [2020-03-13 1...
2004 Aug 06
4
No Duplicate Users - Patch
...avl_tree_unlock(source->client_tree); + return 1; + } + } + client_node = avl_get_next(client_node); + } + + avl_tree_unlock(source->client_tree); + return 0; + +} + auth_result auth_check_client(source_t *source, client_t *client) { auth_t *authenticator = source->authenticator; @@ -71,7 +95,7 @@ password = tmp+1; result = authenticator->authenticate( - authenticator, username, password); + authenticator, source, username, password); if(result == AUTH_OK)...
2010 Apr 05
0
Bug in icecast 2.3.2 (not in stable release but a little later and in trunk) : Null pointer in auth_remove_listener
...the released code but a version that was taken from a tag icecast2-svn-20090324.tar.gz) and it looks that it also affects the last version in the trunk. We studied a core dump generated by icecast. We found that the crash occurred in the following icecast code: static void auth_remove_listener (auth_t *auth, auth_client *auth_user) { client_t *client = auth_user->client; if (client->auth->release_listener) client->auth->release_listener (auth_user); auth_release (client->auth); client->auth = NULL; /* client is going, so auth is not an issue at...