Changeset 12251


Ignore:
Timestamp:
06/02/09 14:27:39 (4 years ago)
Author:
eko
Message:

some MIME types for http server

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/router/httpd/modules/broadcom.c

    r12223 r12251  
    22252225         0}, 
    22262226        {"**.pdf", "application/pdf", NULL, NULL, do_file, NULL, 0}, 
     2227        {"**.mp4", "video/mp4", NULL, NULL, do_file, NULL, 0},   
     2228        {"**.mp3", "audio/mpeg3", NULL, NULL, do_file, NULL, 0},         
     2229        {"**.mpg", "video/mpeg", NULL, NULL, do_file, NULL, 0},  
     2230        {"**.avi", "video/x-msvideo", NULL, NULL, do_file, NULL, 0},     
     2231        {"**.wma", "audio/x-ms-wma", NULL, NULL, do_file, NULL, 0},      
     2232        {"**.wmv", "video/x-ms-wmv", NULL, NULL, do_file, NULL, 0}, 
     2233        {"**.flv", "video/x-flv", NULL, NULL, do_file, NULL, 0},         
    22272234#ifdef HAVE_SKYTRON 
    22282235        {"applyuser.cgi*", "text/html", no_cache, do_apply_post, do_apply_cgi, 
Note: See TracChangeset for help on using the changeset viewer.