Re-written by Scott Mansfield <[email protected]>

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@1548 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin
2002-10-16 22:54:05 +00:00
parent f19a36df3e
commit ae68bb3273
+66 -73
View File
@@ -1,113 +1,106 @@
//------------------------------------------------------------------------------ /*=--------------------------------------------------------------------------=*
// Copyright (c) 2001-2002, OpenBeOS * NetAddress.h -- Interface definition for the BNetAddress class.
//
// Permission is hereby granted, free of charge, to any person obtaining a
// copy of this software and associated documentation files (the "Software"),
// to deal in the Software without restriction, including without limitation
// the rights to use, copy, modify, merge, publish, distribute, sublicense,
// and/or sell copies of the Software, and to permit persons to whom the
// Software is furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
// DEALINGS IN THE SOFTWARE.
//------------------------------------------------------------------------------
#ifndef _NETADDRESS_H
#define _NETADDRESS_H
#include <BeBuild.h>
#include <SupportDefs.h>
#include <Archivable.h>
#include <sys/socket.h>
#include <netinet/in.h>
/*
* BNetAddress
* *
* This class is used to represent network addresses, and provide access * Written by S.T. Mansfield ([email protected])
* to a network address in a variety of formats. BNetAddress provides various ways *
* to get and set a network address, converting to or from the chosen representation * Remarks:
* into a generic internal one. * Mr. Phipps, put that fish away, dude.
*=--------------------------------------------------------------------------=*
* Copyright (c) 2002, The OpenBeOS project.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
* FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*=--------------------------------------------------------------------------=*
*/ */
#ifndef NETADDRESS_H
#define NETADDRESS_H
#include <Archivable.h>
#include <Errors.h>
#include <Application.h>
#include <Message.h>
/*
* Empty forward declaration to satisfy the GetImpl method.
*/
class NLAddress; class NLAddress;
class BNetAddress : public BArchivable class BNetAddress : public BArchivable
{ {
public: public:
BNetAddress( BMessage* archive ); BNetAddress( BMessage* archive );
virtual ~BNetAddress(); virtual ~BNetAddress( void );
virtual status_t Archive( BMessage* into, bool deep = true ) const; virtual status_t Archive( BMessage* into, bool deep = true ) const;
static BArchivable* Instantiate( BMessage* archive ); static BArchivable* Instantiate( BMessage* archive );
BNetAddress(const char *hostname = 0, unsigned short port = 0); BNetAddress( const char* hostname = NULL, unsigned short port = 0 );
BNetAddress( const struct sockaddr_in& sa ); BNetAddress( const struct sockaddr_in& sa );
BNetAddress( in_addr addr, int port = 0 ); BNetAddress( in_addr addr, int port = 0 );
BNetAddress( uint32 addr, int port = 0 ); BNetAddress( uint32 addr, int port = 0 );
BNetAddress(const BNetAddress &); BNetAddress( const BNetAddress& refparam );
BNetAddress( const char* hostname, const char* protocol, const char* service ); BNetAddress( const char* hostname, const char* protocol, const char* service );
BNetAddress& operator=( const BNetAddress& ); BNetAddress& operator=( const BNetAddress& );
/* status_t InitCheck( void ) const;
* It is important to call InitCheck() after creating an instance of this class.
*/
status_t InitCheck();
/*
* BNetAddress::set() sets the internal address representation to refer
* to the internet address specified by the passed-in data.
* Returns true if successful, false otherwise.
*/
status_t SetTo( const char* hostname, const char* protocol, const char* service ); status_t SetTo( const char* hostname, const char* protocol, const char* service );
status_t SetTo(const char *hostname = 0, unsigned short port = 0); status_t SetTo( const char* hostname = NULL, unsigned short port = 0 );
status_t SetTo( const struct sockaddr_in& sa ); status_t SetTo( const struct sockaddr_in& sa );
status_t SetTo( in_addr addr, int port = 0 ); status_t SetTo( in_addr addr, int port = 0 );
status_t SetTo( uint32 addr = INADDR_ANY, int port = 0 ); status_t SetTo( uint32 addr = INADDR_ANY, int port = 0 );
/* status_t GetAddr( char* hostname = NULL, unsigned short* port = NULL ) const;
* BNetAddress::get() converts the internal internet address representation
* into the specified form and returns it by filling in the passed-in parameters.
* Returns true if successful, false otherwise.
*/
status_t GetAddr(char *hostname = 0, unsigned short *port = 0) const;
status_t GetAddr( struct sockaddr_in& sa ) const; status_t GetAddr( struct sockaddr_in& sa ) const;
status_t GetAddr(in_addr &addr, unsigned short *port = 0) const; status_t GetAddr( in_addr& addr, unsigned short* port = NULL ) const;
inline NLAddress *GetImpl() const; inline NLAddress *GetImpl( void ) const;
protected: protected:
status_t m_init; // Attributes.
status_t fInitialized;
// Class-specific attributes. Basically re-encapsulate the saddr_in
// struct (the POSiX version, hopefully). We can be inheritance-friendly
// here and still not break binary compatibility with R5.
int32 fFamily; // Encapsulation of sockaddr::sin_family
int32 fPort; // Encapsulation of sockaddr::sin_port
int32 fAddress; // Encapsulation of sockaddr::sin_addr.s_addr
private: private:
virtual void _ReservedBNetAddressFBCCruft1(); // Private copy helper.
virtual void _ReservedBNetAddressFBCCruft2(); status_t clone( const BNetAddress& RefParam );
virtual void _ReservedBNetAddressFBCCruft3();
virtual void _ReservedBNetAddressFBCCruft4();
virtual void _ReservedBNetAddressFBCCruft5();
virtual void _ReservedBNetAddressFBCCruft6();
int32 __ReservedBNetAddressFBCCruftData[9]; // Not used, here to maintain R5 binary compatiblilty.
int32 fPrivateData[6];
}; };
// WARNING: This method, as it stands, breaks R5 compatibility *STM*.
inline NLAddress* BNetAddress::GetImpl( void ) const
inline NLAddress *BNetAddress::GetImpl() const
{ {
return NULL; // No Nettle backward compatibility return NULL; // Cheeky, yes; but no Nettle stuff is allowed...
} }
#endif // <-- #ifndef NETADDRESS_H
/*=------------------------------------------------------------------- End -=*/
#endif // _NETADDRESS_H