Remove const that breaks binary compatibility (const are mangled too).

Thanks axeld to point at them.


git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8569 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Philippe Houdoin
2004-08-14 01:24:57 +00:00
parent 24e9e6005a
commit 200ec0269e
2 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -62,7 +62,7 @@ public:
/*
* It is important to call InitCheck() after creating an instance of this class.
*/
status_t InitCheck() const;
status_t InitCheck();
/*
@@ -105,8 +105,8 @@ public:
* BNetEndpoint. RemoteAddr() returns a BNetAddress corresponding to the address of
* the remote peer we are connected to, if using a connected stream protocol.
*/
const BNetAddress & LocalAddr() const;
const BNetAddress & RemoteAddr() const;
const BNetAddress & LocalAddr();
const BNetAddress & RemoteAddr();
/*
* BNetEndpoint::Socket() returns the actual socket used for data communications.