summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav/NeonSession.hxx
diff options
context:
space:
mode:
authorKai Sommerfeld <kso@openoffice.org>2001-02-16 07:14:51 +0000
committerKai Sommerfeld <kso@openoffice.org>2001-02-16 07:14:51 +0000
commit543e3fa99c48684eeeb2fb1d38e15eb6aaba308e (patch)
tree2a1e3f84dbd825378d5fca21b79458230e39f27c /ucb/source/ucp/webdav/NeonSession.hxx
parent73d5d1da13c861cb2aa3f19c0cb5d1f54ddffc81 (diff)
#83892# - Need to hold hostname and proxyname in an OString member,
because of somewhat curious neon API.
Diffstat (limited to 'ucb/source/ucp/webdav/NeonSession.hxx')
-rw-r--r--ucb/source/ucp/webdav/NeonSession.hxx14
1 files changed, 8 insertions, 6 deletions
diff --git a/ucb/source/ucp/webdav/NeonSession.hxx b/ucb/source/ucp/webdav/NeonSession.hxx
index e59f6b72adc7..fa6df46142f0 100644
--- a/ucb/source/ucp/webdav/NeonSession.hxx
+++ b/ucb/source/ucp/webdav/NeonSession.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: NeonSession.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: kso $ $Date: 2001-01-26 16:05:04 $
+ * last change: $Author: kso $ $Date: 2001-02-16 08:14:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -77,9 +77,11 @@ class NeonSession : public DAVSession
{
private:
osl::Mutex mMutex;
- HttpSession * mHttpSession;
- rtl::OUString mHostName;
+ rtl::OString mHostName;
+ rtl::OString mProxyName;
sal_Int32 mPort;
+ sal_Int32 mProxyPort;
+ HttpSession * mHttpSession;
// Authentication stuff
DAVAuthListener * mListener;
@@ -183,9 +185,9 @@ class NeonSession : public DAVSession
void Init( void );
// Create a Neon session for server at supplied host & port
- HttpSession * CreateSession( const ::rtl::OUString& inHostName,
+ HttpSession * CreateSession( const ::rtl::OString & inHostName,
int inPort,
- const ::rtl::OUString& inProxyName,
+ const ::rtl::OString & inProxyName,
int inProxyPort );
// A simple Neon http_block_reader for use with a http GET method