/usr/include/tao/HTTP_Client.h is in libtao-dev 6.0.1-3.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 | /* -*- C++ -*- */
//=============================================================================
/**
* @file HTTP_Client.h
*
* $Id: HTTP_Client.h 79237 2007-08-07 09:48:21Z johnnyw $
*
* This is the HTTP_Client class, which is the API for doing file
* uploads/downloads.
*
* @author Stoyan Paunov
*/
//=============================================================================
#ifndef TAO_HTTP_CLIENT_H
#define TAO_HTTP_CLIENT_H
#include /**/ "tao/TAO_Export.h"
#if !defined (ACE_LACKS_PRAGMA_ONCE)
# pragma once
#endif /* ACE_LACKS_PRAGMA_ONCE */
#include "tao/orbconf.h"
#if (TAO_HAS_HTTP_PARSER == 1)
#include "ace/INET_Addr.h"
#include "ace/Svc_Handler.h"
#include "ace/SOCK_Connector.h"
#include "ace/Connector.h"
#include "ace/Message_Block.h"
#include "tao/HTTP_Handler.h"
TAO_BEGIN_VERSIONED_NAMESPACE_DECL
/**
* @class TAO_HTTP_Client
*
* @brief HTTP_Client is intended to provide application API to
* classes that wish to do network i/o at a very
* high level of abstraction.
*
* This class provides the ability to retrieve data from
* the network, of specified length and offset, and potentially
* use any protocol "under the hood" to do so. It currently
* uses HTTP. See HTTP_Handler also.
*/
class TAO_Export TAO_HTTP_Client
{
public:
TAO_HTTP_Client (void);
~TAO_HTTP_Client (void);
/// Initializes the class with the given filename, hostname and port.
/// it should be called with the filename, before any read/write calls
int open (const ACE_TCHAR *filename,
const ACE_TCHAR *hostname = ACE_DEFAULT_SERVER_HOST,
u_short port = 80);
/// Starts a connection, and reads a file from the server into
/// Message_Block mb
int read (ACE_Message_Block *mb);
/// Frees memory allocated for filename.
int close ();
private:
/// Store the internet address of the server
ACE_INET_Addr inet_addr_;
/// The filename
ACE_TCHAR *filename_;
/// The connector endpoint to initiate the client connection
ACE_Connector<TAO_HTTP_Handler, ACE_SOCK_CONNECTOR> connector_;
};
TAO_END_VERSIONED_NAMESPACE_DECL
#endif /* TAO_HAS_HTTP_PARSER == 1 */
#endif /* TAO_HTTP_CLIENT_H */
|