summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-10-10 14:25:51 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-10-10 14:25:51 +0000
commit58c8815679f0131a5f4ae8aba4b16502ff5d4974 (patch)
treebd93953f834086d74cc8329aaf6cc662b1a24618
parent334be32ba6ce14999fdf80bb6b0d9d04268a3a15 (diff)
downloadATCD-58c8815679f0131a5f4ae8aba4b16502ff5d4974.tar.gz
Tue Oct 10 12:11:12 2006 Johnny Willemsen <jwillemsen@remedy.nl>
-rw-r--r--CIAO/DAnCE/NodeApplicationManager/HTTP_Client.cpp4
-rw-r--r--CIAO/DAnCE/NodeApplicationManager/HTTP_Client.h1
2 files changed, 0 insertions, 5 deletions
diff --git a/CIAO/DAnCE/NodeApplicationManager/HTTP_Client.cpp b/CIAO/DAnCE/NodeApplicationManager/HTTP_Client.cpp
index 73a8071f305..1b2d6afc519 100644
--- a/CIAO/DAnCE/NodeApplicationManager/HTTP_Client.cpp
+++ b/CIAO/DAnCE/NodeApplicationManager/HTTP_Client.cpp
@@ -30,7 +30,6 @@ HTTP_Client::open (const ACE_TCHAR *filename,
int
HTTP_Client::read (ACE_Message_Block *mb)
{
-
// Create a HTTP_Client Reader
HTTP_Reader HTTP_reader (mb, filename_);
HTTP_Handler *brp = &HTTP_reader;
@@ -40,20 +39,17 @@ HTTP_Client::read (ACE_Message_Block *mb)
ACE_ERROR_RETURN ((LM_ERROR, "%p\n", "HTTP_Client::read():Connector error"), -1);
return HTTP_reader.byte_count ();
-
}
// close down the HTTP_Client
int
HTTP_Client::close (void)
{
-
if (filename_)
{
ACE_OS::free ((void *) filename_);
filename_ = 0;
}
return 0;
-
}
diff --git a/CIAO/DAnCE/NodeApplicationManager/HTTP_Client.h b/CIAO/DAnCE/NodeApplicationManager/HTTP_Client.h
index ac0f9cbea92..1a62fb10bcc 100644
--- a/CIAO/DAnCE/NodeApplicationManager/HTTP_Client.h
+++ b/CIAO/DAnCE/NodeApplicationManager/HTTP_Client.h
@@ -66,7 +66,6 @@ private:
/// The connector endpoint to initiate the client connection
ACE_Connector<HTTP_Handler, ACE_SOCK_CONNECTOR> connector_;
-
};
#endif /* HTTP_Client_H */