1 /* 2 * This file is part of tcpflow by Simson Garfinkel <simsong@acm.org>. 3 * Originally by Will Glynn <will@willglynn.com>. 4 * 5 * This source code is under the GNU Public License (GPL) version 3. 6 * See COPYING for details. 7 * 8 */ 9 10 #ifndef MIME_MAP_H 11 #define MIME_MAP_H 12 13 #include <string> 14 15 std::string get_extension_for_mime_type(const std::string& mime_type); 16 17 #endif /* MIME_MAP_H */