/* ** ice.c ** $Id: ogg.c,v 1.2 2002/05/20 00:45:56 brian Exp $ */ #include "mod_mp3.h" MP3_EXPORT(void) send_ogg_headers(request_rec *r, mp3_conf* cfg, request_data *request) { #ifdef DEBUG printf("Doing Ogg\n"); #endif ap_rputs("HTTP/1.0 200 OK\n", r); ap_rputs("Server: Apache/mod_mp3
\n", r); ap_rprintf(r, "Content-Type: audio/x-ogg\n"); // Need to add additional support soon ap_rprintf(r, "ice-bitrate: 0\n"); ap_rprintf(r, "ice-name: %s\n", cfg->cast_name); ap_rprintf(r, "ice-public: 0\n"); /* This means we are doing both types at once */ ap_rputs("\n",r); }