Updated project files to VS2008 SP1. Removed deprecated features (and warning message...
[xiph/unicode.git] / oggdsf / src / lib / core / directshow / dsfOggDemux / HTTPSocket.h
blob7989533f6924253213aee7f8df8465748f4cd5c0
1 //===========================================================================
2 //Copyright (C) 2003, 2004 Zentaro Kavanagh
3 //
4 //Redistribution and use in source and binary forms, with or without
5 //modification, are permitted provided that the following conditions
6 //are met:
7 //
8 //- Redistributions of source code must retain the above copyright
9 // notice, this list of conditions and the following disclaimer.
11 //- Redistributions in binary form must reproduce the above copyright
12 // notice, this list of conditions and the following disclaimer in the
13 // documentation and/or other materials provided with the distribution.
15 //- Neither the name of Zentaro Kavanagh nor the names of contributors
16 // may be used to endorse or promote products derived from this software
17 // without specific prior written permission.
19 //THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20 //``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21 //LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
22 //PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ORGANISATION OR
23 //CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24 //EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25 //PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26 //PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27 //LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28 //NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29 //SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 //===========================================================================
31 #pragma once
32 #include <fstream>
33 #include <string>
34 using namespace std;
36 class OGG_DEMUX_API HTTPSocket
38 public:
39 HTTPSocket(void);
40 virtual ~HTTPSocket(void);
42 virtual bool setupSocket(string inSourceLocation);
43 virtual void closeSocket();
44 virtual bool splitURL(string inURL);
45 virtual string assembleRequest(string inFilePath);
46 bool httpRequest(string inRequest);
47 protected:
48 string mServerName;
49 string mFileName;
50 unsigned short mPort;
51 string mLastResponse;
52 SOCKET mSocket;
54 bool mIsEOF;
55 bool mWasError;
56 bool mIsOpen;
57 bool mSeenResponse;
59 //fstream debugLog2;