summaryrefslogtreecommitdiff
path: root/ucb/source/ucp/webdav/NeonSession.cxx
diff options
context:
space:
mode:
authorVladimir Glazounov <vg@openoffice.org>2007-08-30 15:00:34 +0000
committerVladimir Glazounov <vg@openoffice.org>2007-08-30 15:00:34 +0000
commit1f00b4eb55ebfac95295752d327d3a1cef90a913 (patch)
treec3cabb78613adf534e9d4c649233bce079b703d2 /ucb/source/ucp/webdav/NeonSession.cxx
parent8b93488eead43583d904de0705b9620870e9b438 (diff)
INTEGRATION: CWS tkr04 (1.49.12); FILE MERGED
2007/08/28 10:54:22 tkr 1.49.12.1: #i80967#: removes the unused code
Diffstat (limited to 'ucb/source/ucp/webdav/NeonSession.cxx')
-rw-r--r--ucb/source/ucp/webdav/NeonSession.cxx37
1 files changed, 2 insertions, 35 deletions
diff --git a/ucb/source/ucp/webdav/NeonSession.cxx b/ucb/source/ucp/webdav/NeonSession.cxx
index bc49849bfd7e..a81cd2d2337c 100644
--- a/ucb/source/ucp/webdav/NeonSession.cxx
+++ b/ucb/source/ucp/webdav/NeonSession.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: NeonSession.cxx,v $
*
- * $Revision: 1.49 $
+ * $Revision: 1.50 $
*
- * last change: $Author: obo $ $Date: 2007-07-18 07:55:41 $
+ * last change: $Author: vg $ $Date: 2007-08-30 16:00:34 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -364,32 +364,6 @@ extern "C" int NeonSession_NeonAuth( void * inUserData,
}
// -------------------------------------------------------------------
-extern "C" void NeonSession_ProgressNotify( void *,
- off_t,
- off_t )
-{
- // progress: bytes read so far
- // total: total bytes to read, -1 -> total count not known
-}
-
-// -------------------------------------------------------------------
-extern "C" void NeonSession_StatusNotify( void *,
- ne_conn_status,
- const char * )
-{
-#if 0
- typedef enum {
- ne_conn_namelookup, /* lookup up hostname (info = hostname) */
- ne_conn_connecting, /* connecting to host (info = hostname) */
- ne_conn_connected, /* connected to host (info = hostname) */
- ne_conn_secure /* connection now secure (info = crypto level) */
- } ne_conn_status;
-#endif
-
- // info: hostname
-}
-
-// -------------------------------------------------------------------
extern "C" void NeonSession_PreSendRequest( ne_request * req,
void * userdata,
ne_buffer * headers )
@@ -578,13 +552,6 @@ void NeonSession::Init()
NeonUri::makeConnectionEndPointString(
m_aHostName, m_nPort ) );
- // Set a progress callback for the session.
- ne_set_progress( m_pHttpSession, NeonSession_ProgressNotify, this );
-
- // Set a status notification callback for the session, to report
- // connection status.
- ne_set_status( m_pHttpSession, NeonSession_StatusNotify, this );
-
// Add hooks (i.e. for adding additional headers to the request)
#if 0