TypeId Consumer::GetTypeId(void) { static TypeId tid = TypeId("ns3::ndn::Consumer") .SetGroupName("Ndn") .SetParent<App>() .AddAttribute("StartSeq", "Initial sequence number", IntegerValue(0), MakeIntegerAccessor(&Consumer::m_seq), MakeIntegerChecker<int32_t>()) .AddAttribute("Prefix", "Name of the Interest", StringValue("/"), MakeNameAccessor(&Consumer::m_interestName), MakeNameChecker()) .AddAttribute("LifeTime", "LifeTime for interest packet", StringValue("2s"), MakeTimeAccessor(&Consumer::m_interestLifeTime), MakeTimeChecker()) .AddAttribute("RetxTimer", "Timeout defining how frequent retransmission timeouts should be checked", StringValue("50ms"), MakeTimeAccessor(&Consumer::GetRetxTimer, &Consumer::SetRetxTimer), MakeTimeChecker()) .AddTraceSource("LastRetransmittedInterestDataDelay", "Delay between last retransmitted Interest and received Data", MakeTraceSourceAccessor(&Consumer::m_lastRetransmittedInterestDataDelay), "ns3::ndn::Consumer::LastRetransmittedInterestDataDelayCallback") .AddTraceSource("FirstInterestDataDelay", "Delay between first transmitted Interest and received Data", MakeTraceSourceAccessor(&Consumer::m_firstInterestDataDelay), "ns3::ndn::Consumer::FirstInterestDataDelayCallback"); return tid; }
TypeId LtePdcp::GetTypeId (void) { static TypeId tid = TypeId ("ns3::LtePdcp") .SetParent<Object> () .AddTraceSource ("TxPDU", "PDU transmission notified to the RLC.", MakeTraceSourceAccessor (&LtePdcp::m_txPdu)) .AddTraceSource ("RxPDU", "PDU received.", MakeTraceSourceAccessor (&LtePdcp::m_rxPdu)) ; return tid; }
TypeId PacketProbe::GetTypeId () { static TypeId tid = TypeId ("ns3::PacketProbe") .SetParent<Probe> () .AddConstructor<PacketProbe> () .AddTraceSource ( "Output", "The packet that serve as the output for this probe", MakeTraceSourceAccessor (&PacketProbe::m_output)) .AddTraceSource ( "OutputBytes", "The number of bytes in the packet", MakeTraceSourceAccessor (&PacketProbe::m_outputBytes)) ; return tid; }
TypeId AccountingConsumer::GetTypeId(void) { static TypeId tid = TypeId("ns3::ndn::AccountingConsumer") .SetGroupName("Ndn") .SetParent<ConsumerCbr>() .AddConstructor<AccountingConsumer>() .AddAttribute("ConsumerID", "Consumer ID", IntegerValue(std::numeric_limits<uint32_t>::max()), MakeIntegerAccessor(&AccountingConsumer::m_id), MakeIntegerChecker<uint32_t>()) .AddAttribute("NumberOfContents", "Number of the Contents in total", StringValue("100"), MakeUintegerAccessor(&AccountingConsumer::SetNumberOfContents, &AccountingConsumer::GetNumberOfContents), MakeUintegerChecker<uint32_t>()) .AddAttribute("q", "parameter of improve rank", StringValue("0.7"), MakeDoubleAccessor(&AccountingConsumer::SetQ, &AccountingConsumer::GetQ), MakeDoubleChecker<double>()) .AddAttribute("s", "parameter of power", StringValue("0.7"), MakeDoubleAccessor(&AccountingConsumer::SetS, &AccountingConsumer::GetS), MakeDoubleChecker<double>()) .AddTraceSource("ReceivedMeaningfulContent", "Trace called every time meaningful content is received", MakeTraceSourceAccessor(&AccountingConsumer::m_receivedMeaningfulContent)); return tid; }
TypeId App::GetTypeId(void) { static TypeId tid = TypeId("ns3::ndn::App") .SetGroupName("Ndn") .SetParent<Application>() .AddConstructor<App>() .AddTraceSource("ReceivedInterests", "ReceivedInterests", MakeTraceSourceAccessor(&App::m_receivedInterests)) .AddTraceSource("ReceivedDatas", "ReceivedDatas", MakeTraceSourceAccessor(&App::m_receivedDatas)) .AddTraceSource("TransmittedInterests", "TransmittedInterests", MakeTraceSourceAccessor(&App::m_transmittedInterests)) .AddTraceSource("TransmittedDatas", "TransmittedDatas", MakeTraceSourceAccessor(&App::m_transmittedDatas)); return tid; }
TypeId WimaxMacQueue::GetTypeId (void) { static TypeId tid = TypeId ("ns3::WimaxMacQueue") .SetParent<Object> () .AddAttribute ( "MaxSize", "Maximum size", UintegerValue (1024), MakeUintegerAccessor (&WimaxMacQueue::GetMaxSize, &WimaxMacQueue::SetMaxSize), MakeUintegerChecker<uint32_t> ()) .AddTraceSource ("Enqueue", "Enqueue trace", MakeTraceSourceAccessor (&WimaxMacQueue::m_traceEnqueue)) .AddTraceSource ("Dequeue", "Dequeue trace", MakeTraceSourceAccessor (&WimaxMacQueue::m_traceDequeue)) .AddTraceSource ("Drop", "Drop trace", MakeTraceSourceAccessor (&WimaxMacQueue::m_traceDrop)) ; return tid; }
TypeId ContentStoreWithStats<Policy>::GetTypeId() { static TypeId tid = TypeId(("ns3::ndn::cs::Stats::" + Policy::GetName()).c_str()) .SetGroupName("Ndn") .SetParent<super>() .template AddConstructor<ContentStoreWithStats<Policy>>() .AddTraceSource("WillRemoveEntry", "Trace called just before content store entry will be removed", MakeTraceSourceAccessor(&ContentStoreWithStats<Policy>::m_willRemoveEntry), "ns3::ndn::cs::ContentStoreWithStats::RemoveCsEntryCallback") // trace stuff here ; return tid; }
TypeId TcpNewReno::GetTypeId (void) { static TypeId tid = TypeId ("ns3::TcpNewReno") .SetParent<TcpSocketBase> () .AddConstructor<TcpNewReno> () .AddAttribute ("ReTxThreshold", "Threshold for fast retransmit", UintegerValue (3), MakeUintegerAccessor (&TcpNewReno::m_retxThresh), MakeUintegerChecker<uint32_t> ()) .AddAttribute ("LimitedTransmit", "Enable limited transmit", BooleanValue (false), MakeBooleanAccessor (&TcpNewReno::m_limitedTx), MakeBooleanChecker ()) .AddTraceSource ("CongestionWindow", "The TCP connection's congestion window", MakeTraceSourceAccessor (&TcpNewReno::m_cWnd)) ; return tid; }
TypeId ContentStoreImpl<Policy>::GetTypeId() { static TypeId tid = TypeId(("ns3::ndn::cs::" + Policy::GetName()).c_str()) .SetGroupName("Ndn") .SetParent<ContentStore>() .AddConstructor<ContentStoreImpl<Policy>>() .AddAttribute("MaxSize", "Set maximum number of entries in ContentStore. If 0, limit is not enforced", StringValue("100"), MakeUintegerAccessor(&ContentStoreImpl<Policy>::GetMaxSize, &ContentStoreImpl<Policy>::SetMaxSize), MakeUintegerChecker<uint32_t>()) .AddTraceSource("DidAddEntry", "Trace fired every time entry is successfully added to the cache", MakeTraceSourceAccessor(&ContentStoreImpl<Policy>::m_didAddEntry)); return tid; }
TypeId FdNetDevice::GetTypeId (void) { static TypeId tid = TypeId ("ns3::FdNetDevice") .SetParent<NetDevice> () .AddConstructor<FdNetDevice> () .AddAttribute ("Address", "The MAC address of this device.", Mac48AddressValue (Mac48Address ("ff:ff:ff:ff:ff:ff")), MakeMac48AddressAccessor (&FdNetDevice::m_address), MakeMac48AddressChecker ()) .AddAttribute ("Start", "The simulation time at which to spin up the device thread.", TimeValue (Seconds (0.)), MakeTimeAccessor (&FdNetDevice::m_tStart), MakeTimeChecker ()) .AddAttribute ("Stop", "The simulation time at which to tear down the device thread.", TimeValue (Seconds (0.)), MakeTimeAccessor (&FdNetDevice::m_tStop), MakeTimeChecker ()) .AddAttribute ("EncapsulationMode", "The link-layer encapsulation type to use.", EnumValue (DIX), MakeEnumAccessor (&FdNetDevice::m_encapMode), MakeEnumChecker (DIX, "Dix", LLC, "Llc", DIXPI, "DixPi")) .AddAttribute ("RxQueueSize", "Maximum size of the read queue. " "This value limits number of packets that have been read " "from the network into a memory buffer but have not yet " "been processed by the simulator.", UintegerValue (1000), MakeUintegerAccessor (&FdNetDevice::m_maxPendingReads), MakeUintegerChecker<uint32_t> ()) // // Trace sources at the "top" of the net device, where packets transition // to/from higher layers. These points do not really correspond to the // MAC layer of the underlying operating system, but exist to provide // a consitent tracing environment. These trace hooks should really be // interpreted as the points at which a packet leaves the ns-3 environment // destined for the underlying operating system or vice-versa. // .AddTraceSource ("MacTx", "Trace source indicating a packet has arrived for transmission by this device", MakeTraceSourceAccessor (&FdNetDevice::m_macTxTrace)) .AddTraceSource ("MacTxDrop", "Trace source indicating a packet has been dropped by the device before transmission", MakeTraceSourceAccessor (&FdNetDevice::m_macTxDropTrace)) .AddTraceSource ("MacPromiscRx", "A packet has been received by this device, has been passed up from the physical layer " "and is being forwarded up the local protocol stack. This is a promiscuous trace,", MakeTraceSourceAccessor (&FdNetDevice::m_macPromiscRxTrace)) .AddTraceSource ("MacRx", "A packet has been received by this device, has been passed up from the physical layer " "and is being forwarded up the local protocol stack. This is a non-promiscuous trace,", MakeTraceSourceAccessor (&FdNetDevice::m_macRxTrace)) // // Trace sources designed to simulate a packet sniffer facility (tcpdump). // .AddTraceSource ("Sniffer", "Trace source simulating a non-promiscuous packet sniffer attached to the device", MakeTraceSourceAccessor (&FdNetDevice::m_snifferTrace)) .AddTraceSource ("PromiscSniffer", "Trace source simulating a promiscuous packet sniffer attached to the device", MakeTraceSourceAccessor (&FdNetDevice::m_promiscSnifferTrace)) ; return tid; }