00001 /* Copyright (C) 2002 Carsten Griwodz 00002 * 00003 * You are allowed to use all other parts of the code under the following terms: 00004 * 00005 * For non-commercial use, this code may be used in unmodified form 00006 * provided that this copyright notice and this permission notice appear 00007 * in supporting documentation. 00008 * 00009 * The code may be made subject to the terms of the GNU General Public 00010 * License, Version 2, and re-distributed under the terms of this license. 00011 * 00012 * Commercial use other than under the terms of the GNU General Public 00013 * License is allowed only after negotiation of conditions with the authors. 00014 */ 00015 #ifndef TEST_CACHING_DESCRIBE_HEADER_H 00016 #define TEST_CACHING_DESCRIBE_HEADER_H 00017 00018 #include <sys/types.h> 00019 #include <netinet/in.h> 00020 00021 #include "RTSPHeader.h" 00022 #include "RTSPDescribeHeader.h" 00023 #include "ParseTransport.h" 00024 #include "MNString.h" 00025 00026 class ControlBase; 00027 00028 class TestCachingDescribeHeader : public RTSPDescribeHeader 00029 { 00030 protected: 00031 MNString _path; 00032 ParseHeaderLines _header_lines; 00033 00034 public: 00035 TestCachingDescribeHeader( int CSeq, 00036 const RTSPSchemeClass* scheme, 00037 ControlBase* rfb ); 00038 virtual ~TestCachingDescribeHeader( ); 00039 00040 virtual void call( MNSelector& slct ); 00041 }; 00042 00043 #endif /* TEST_CACHING_DESCRIBE_HEADER_H */ 00044