wibble  0.1.28
mime.h
Go to the documentation of this file.
00001 #ifndef WIBBLE_NET_MIME_H
00002 #define WIBBLE_NET_MIME_H
00003 
00004 /*
00005  * net/mime - MIME utilities
00006  *
00007  * Copyright (C) 2010  Enrico Zini <enrico@enricozini.org>
00008  *
00009  * This library is free software; you can redistribute it and/or
00010  * modify it under the terms of the GNU Lesser General Public
00011  * License as published by the Free Software Foundation; either
00012  * version 2.1 of the License, or (at your option) any later version.
00013  *
00014  * This library is distributed in the hope that it will be useful,
00015  * but WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00017  * Lesser General Public License for more details.
00018  *
00019  * You should have received a copy of the GNU Lesser General Public
00020  * License along with this library; if not, write to the Free Software
00021  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307  USA
00022  */
00023 
00024 #include <string>
00025 #include <map>
00026 #include <wibble/regexp.h>
00027 #include <iosfwd>
00028 
00029 namespace wibble {
00030 namespace net {
00031 namespace mime {
00032 
00033 struct Reader
00034 {
00035     wibble::ERegexp header_splitter;
00036 
00037     Reader();
00038 
00051     bool read_line(int sock, std::string& res);
00052 
00059     bool read_headers(int sock, std::map<std::string, std::string>& headers);
00060 
00069     bool read_until_boundary(int sock, const std::string& boundary, std::ostream& out, size_t max=0);
00070 
00077     bool discard_until_boundary(int sock, const std::string& boundary);
00078 
00084     bool readboundarytail(int sock);
00085 };
00086 
00087 }
00088 }
00089 }
00090 
00091 // vim:set ts=4 sw=4:
00092 #endif