Remove NS_DEPRECATED_3_34 methods

This commit is contained in:
Tom Henderson
2022-11-02 17:01:33 -07:00
parent 495a1bb0c8
commit 6d4eff6961
5 changed files with 0 additions and 45 deletions

View File

@@ -93,11 +93,4 @@
*/
#define NS_DEPRECATED_3_35 NS_DEPRECATED("")
/**
* \ingroup core
* \def NS_DEPRECATED_3_34
* Tag for things deprecated in version ns-3.34.
*/
#define NS_DEPRECATED_3_34 NS_DEPRECATED("")
#endif /* NS3_DEPRECATED_H */

View File

@@ -657,19 +657,6 @@ Icmpv6RA::SetFlagH(bool h)
m_flagH = h;
}
uint8_t
Icmpv6RA::GetFlags() const
{
NS_LOG_FUNCTION(this);
return 0;
}
void
Icmpv6RA::SetFlags(uint8_t f)
{
NS_LOG_FUNCTION(this << static_cast<uint32_t>(f));
}
void
Icmpv6RA::Print(std::ostream& os) const
{

View File

@@ -682,20 +682,6 @@ class Icmpv6RA : public Icmpv6Header
*/
void Print(std::ostream& os) const override;
/**
* \brief Getflags.
* \return the flags value
*/
NS_DEPRECATED_3_34
uint8_t GetFlags() const;
/**
* \brief Setflags.
* \param f the flags value
*/
NS_DEPRECATED_3_34
void SetFlags(uint8_t f);
/**
* \brief Get the serialized size.
* \return serialized size

View File

@@ -248,12 +248,6 @@ RoutingProtocol::SetIpv4(Ptr<Ipv4> ipv4)
m_hnaRoutingTable->SetIpv4(ipv4);
}
Ptr<Ipv4>
RoutingProtocol::GetIpv4() const
{
return m_ipv4;
}
void
RoutingProtocol::DoDispose()
{

View File

@@ -356,11 +356,6 @@ class RoutingProtocol : public Ipv4RoutingProtocol
ErrorCallback ecb) override;
void SetIpv4(Ptr<Ipv4> ipv4) override;
/**
* \returns the ipv4 object this routing protocol is associated with
*/
NS_DEPRECATED_3_34
virtual Ptr<Ipv4> GetIpv4() const;
void PrintRoutingTable(Ptr<OutputStreamWrapper> stream,
Time::Unit unit = Time::S) const override;