aboutsummaryrefslogtreecommitdiff
path: root/src/httpget.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2009-02-24 01:31:48 +0000
committerMike Buland <eichlan@xagasoft.com>2009-02-24 01:31:48 +0000
commit22277c6ffe91189cbb5d7a7d8572bf829e3a2610 (patch)
tree5e9d2a7aa1e1d2c2efe8696ff174d125de6051a4 /src/httpget.cpp
parent88b3a5acf78aa9a2d73f2462e45988f5afb9d2c5 (diff)
downloadlibbu++-22277c6ffe91189cbb5d7a7d8572bf829e3a2610.tar.gz
libbu++-22277c6ffe91189cbb5d7a7d8572bf829e3a2610.tar.bz2
libbu++-22277c6ffe91189cbb5d7a7d8572bf829e3a2610.tar.xz
libbu++-22277c6ffe91189cbb5d7a7d8572bf829e3a2610.zip
Just committing some in-progress code. It may report some warnings, but it
doesn't inhibit building. These'll be in good working shape in no time.
Diffstat (limited to 'src/httpget.cpp')
-rw-r--r--src/httpget.cpp103
1 files changed, 103 insertions, 0 deletions
diff --git a/src/httpget.cpp b/src/httpget.cpp
new file mode 100644
index 0000000..c5aa16d
--- /dev/null
+++ b/src/httpget.cpp
@@ -0,0 +1,103 @@
1#include "bu/httpget.h"
2
3Bu::HttpGet::HttpGet( const Bu::Url &uSrc, const Bu::FString &sMethod ) :
4 uSrc( uSrc ),
5 sMethod( sMethod ),
6 sSrv( uSrc.getHost(), uSrc.getPort() )
7{
8 sSrv.write( sMethod + " " + uSrc.getFullPath() + " HTTP/1.1\r\n" );
9}
10
11Bu::HttpGet::~HttpGet()
12{
13}
14
15void Bu::HttpGet::close()
16{
17}
18
19void Bu::HttpGet::get()
20{
21 for( MimeHash::iterator i = hMimeOut.begin(); i; i++ )
22 {
23 sSrv.write( i.getKey() + ": " + i.getValue() + "\r\n" );
24 }
25 sSrv.write("\r\n", 2 );
26
27// sSrv.read(
28}
29
30size_t Bu::HttpGet::read( void *pBuf, size_t nBytes )
31{
32}
33
34size_t Bu::HttpGet::write( const void *pBuf, size_t nBytes )
35{
36 return 0;
37}
38
39long Bu::HttpGet::tell()
40{
41 return 0;
42}
43
44void Bu::HttpGet::seek( long )
45{
46}
47
48void Bu::HttpGet::setPos( long )
49{
50}
51
52void Bu::HttpGet::setPosEnd( long )
53{
54}
55
56bool Bu::HttpGet::isEOS()
57{
58 return false;
59}
60
61bool Bu::HttpGet::isOpen()
62{
63 return true;
64}
65
66void Bu::HttpGet::flush()
67{
68}
69
70bool Bu::HttpGet::canRead()
71{
72 return true;
73}
74
75bool Bu::HttpGet::canWrite()
76{
77 return false;
78}
79
80bool Bu::HttpGet::isReadable()
81{
82 return true;
83}
84
85bool Bu::HttpGet::isWritable()
86{
87 return false;
88}
89
90bool Bu::HttpGet::isSeekable()
91{
92 return false;
93}
94
95bool Bu::HttpGet::isBlocking()
96{
97 return true;
98}
99
100void Bu::HttpGet::setBlocking( bool /*bBlocking*/ )
101{
102}
103