Overhauled BNetEndpoint implementation (and BNetAddress, too):

* added NetEndpointTest that exposed a couple of bugs
* fixed several bugs in the implementation of BNetEndpoint, some of which kept 
  NetPenguin from working
* fixed a couple of constness issues in BNetEndpoint and BNetAddress


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@26405 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Oliver Tappe
2008-07-13 19:58:35 +00:00
parent 0af6c60b15
commit 49a22456dd
7 changed files with 566 additions and 118 deletions
+10 -4
View File
@@ -27,22 +27,28 @@ class BNetAddress : public BArchivable {
BNetAddress(in_addr addr, int port = 0);
BNetAddress(uint32 addr, int port = 0);
BNetAddress(const BNetAddress& other);
BNetAddress(const char* hostname, const char* protocol, const char* service);
BNetAddress(const char* hostname, const char* protocol,
const char* service);
BNetAddress& operator=(const BNetAddress&);
status_t InitCheck();
status_t InitCheck() const;
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 = NULL, unsigned short port = 0);
status_t SetTo(const struct sockaddr_in& addr);
status_t SetTo(in_addr addr, int port = 0);
status_t SetTo(uint32 addr = INADDR_ANY, int port = 0);
status_t GetAddr(char* hostname = NULL, unsigned short* port = NULL) const;
status_t GetAddr(char* hostname = NULL,
unsigned short* port = NULL) const;
status_t GetAddr(struct sockaddr_in& addr) const;
status_t GetAddr(in_addr& addr, unsigned short* port = NULL) const;
// TODO: drop this compatibility cruft method after R1
status_t InitCheck();
private:
virtual void _ReservedBNetAddressFBCCruft1();
virtual void _ReservedBNetAddressFBCCruft2();