[ns] How to turn off trace

2006-01-02 Thread Myung-Ah Park
I do not need any trace in my simulation. How can I turn off trace? - Yahoo! DSL Something to write home about. Just $16.99/mo. or less

[ns] When and where is bandwidth_ set?

2005-12-30 Thread Myung-Ah Park
When the constructor of MAC802_11 is called, it calls the constuctor of Mac, which is the parent class of MAC802_11. Within Mac's constuctor, the value of 'bandwidth_' is 0. But all of sudden, inside MAC802_11's constructor, the value of bandwidth_ is changed to 200. Furthermore, even if I

[ns] Q] how to implement an agent (traffic generator) on top of MAC

2005-12-28 Thread Myung-Ah Park
I want to build an agent which is a Poisson traffic generator on top of MAC layer. I do not need any routing module since traffic in my simulation is local, meaning that the destination of a packet is one of neighbors of a given node. (random traffic per packet basis) With my little knowledge,