/* Icecast * * This program is distributed under the GNU General Public License, version 2. * A copy of this license is included with this source. * * Copyright 2000-2004, Jack Moffitt , * oddsock , * Karl Heyes * and others (see AUTHORS for details). */ #ifndef __ADMIN_H__ #define __ADMIN_H__ #include #include #include "refbuf.h" #include "client.h" #include "source.h" #define RAW 1 #define TRANSFORMED 2 #define PLAINTEXT 3 void admin_handle_request(client_t *client, const char *uri); void admin_send_response(xmlDocPtr doc, client_t *client, int response, const char *xslt_template); void admin_add_listeners_to_mount(source_t *source, xmlNodePtr parent); #endif /* __ADMIN_H__ */