31ea76548a
* BNetworkInterfaceAddress is moved to libnetwork. It is modified to not use BNetworkAddress (which is in libbnetapi) and instead use sockaddr and sockaddr_storage directly. All callers are adjusted to this. * Some support code is shared between BNetworkInterface and BNetworkInterfaceAddress, move it to libnetwork but in the BPrivate namespace.
118 lines
3.2 KiB
C++
118 lines
3.2 KiB
C++
/*
|
|
* Copyright 2010, Haiku, Inc. All Rights Reserved.
|
|
* Distributed under the terms of the MIT License.
|
|
*/
|
|
#ifndef _NETWORK_INTERFACE_H
|
|
#define _NETWORK_INTERFACE_H
|
|
|
|
|
|
#include <net/if.h>
|
|
#include <net/if_types.h>
|
|
#include <sys/socket.h>
|
|
|
|
#include <ObjectList.h>
|
|
|
|
|
|
class BNetworkAddress;
|
|
class BNetworkInterface;
|
|
|
|
|
|
class BNetworkInterfaceAddress {
|
|
public:
|
|
BNetworkInterfaceAddress();
|
|
~BNetworkInterfaceAddress();
|
|
|
|
status_t SetTo(const char* interfaceName,
|
|
int32 index);
|
|
|
|
void SetAddress(const sockaddr& address);
|
|
void SetMask(const sockaddr& mask);
|
|
void SetBroadcast(const sockaddr& broadcast);
|
|
void SetDestination(const sockaddr& destination);
|
|
|
|
const sockaddr& Address() const { return (sockaddr&)fAddress; }
|
|
const sockaddr& Mask() const { return (sockaddr&)fMask; }
|
|
const sockaddr& Broadcast() const
|
|
{ return (sockaddr&)fBroadcast; }
|
|
const sockaddr& Destination() const
|
|
{ return (sockaddr&)fBroadcast; }
|
|
|
|
void SetFlags(uint32 flags);
|
|
uint32 Flags() const { return fFlags; }
|
|
|
|
int32 Index() const { return fIndex; }
|
|
|
|
private:
|
|
int32 fIndex;
|
|
sockaddr_storage fAddress;
|
|
sockaddr_storage fMask;
|
|
sockaddr_storage fBroadcast;
|
|
uint32 fFlags;
|
|
};
|
|
|
|
|
|
class BNetworkInterface {
|
|
public:
|
|
BNetworkInterface();
|
|
BNetworkInterface(const char* name);
|
|
BNetworkInterface(uint32 index);
|
|
~BNetworkInterface();
|
|
|
|
void Unset();
|
|
void SetTo(const char* name);
|
|
status_t SetTo(uint32 index);
|
|
|
|
bool Exists() const;
|
|
|
|
const char* Name() const;
|
|
uint32 Index() const;
|
|
uint32 Flags() const;
|
|
uint32 MTU() const;
|
|
int32 Media() const;
|
|
uint32 Metric() const;
|
|
uint32 Type() const;
|
|
status_t GetStats(ifreq_stats& stats);
|
|
bool HasLink() const;
|
|
|
|
status_t SetFlags(uint32 flags);
|
|
status_t SetMTU(uint32 mtu);
|
|
status_t SetMedia(int32 media);
|
|
status_t SetMetric(uint32 metric);
|
|
|
|
int32 CountAddresses() const;
|
|
status_t GetAddressAt(int32 index,
|
|
BNetworkInterfaceAddress& address);
|
|
int32 FindAddress(const BNetworkAddress& address);
|
|
int32 FindFirstAddress(int family);
|
|
|
|
status_t AddAddress(
|
|
const BNetworkInterfaceAddress& address);
|
|
status_t AddAddress(const BNetworkAddress& address);
|
|
status_t SetAddress(
|
|
const BNetworkInterfaceAddress& address);
|
|
status_t RemoveAddress(
|
|
const BNetworkInterfaceAddress& address);
|
|
status_t RemoveAddress(const BNetworkAddress& address);
|
|
status_t RemoveAddressAt(int32 index);
|
|
|
|
status_t GetHardwareAddress(BNetworkAddress& address);
|
|
|
|
status_t AddRoute(const route_entry& route);
|
|
status_t AddDefaultRoute(const BNetworkAddress& gateway);
|
|
status_t RemoveRoute(const route_entry& route);
|
|
status_t RemoveRoute(int family,
|
|
const route_entry& route);
|
|
status_t RemoveDefaultRoute(int family);
|
|
status_t GetRoutes(int family, BObjectList<route_entry>& routes) const;
|
|
status_t GetDefaultRoute(int family, BNetworkAddress& gateway) const;
|
|
|
|
status_t AutoConfigure(int family);
|
|
|
|
private:
|
|
char fName[IF_NAMESIZE];
|
|
BList fAddresses;
|
|
};
|
|
|
|
|
|
#endif // _NETWORK_INTERFACE_H
|