[ns] protocol creation

2013-09-11 Thread Jothi Thulasimani
How to create routing protocol in ns2?

[ns] Protocol development

2012-06-29 Thread Frank Wetzels
All, I am in the process of the development a protocol. I read some of the documentation and suggestions. Now, to ease my life a little bit, I decided to start with one of the suggestions: take an existing protocol and change it to my needs. My question to you all is whether some of you have

[ns] PROTOCOL STACK

2011-08-21 Thread itishi saxena
Hello frds,   I am facing a problem while working with my project. I have a task to design adaptation method for protocol. Can somebody guide me, how we think about protocol stack, when want to change or add something in traditional approach of communication? here, I am talking about wireless

[ns] Protocol implementation

2009-02-19 Thread Namita Dalal
Hi I have got the answer for the previous problem. But now my code is giving another problem. My protocol implementation is successful but it is giving following error when i use it in setup. (_o17 cmd line 1) invoked from within _o17 cmd if-queue _o20 invoked from

[ns] protocol patch modification help

2007-04-18 Thread prasenjit bhavathankar
hello everyone i m working on ns-2 i m using pim-sm protocol patch for modification to find the alternate path routing multicast along with the patch i have classifier.h and classifier.cc file and after applying patch one more file i.e. pim. tcl is placed in the tcl folder so i wanted to

Re: [ns] Protocol

2007-03-22 Thread Pedro Vale Estrela
Sent: quarta-feira, 21 de Março de 2007 19:28 To: ns-users@ISI.EDU Subject: Re: [ns] Protocol Hi All, I was wondering if anyone had the simulation code for the BCMP protocol or similar protocol of sorts. Network

Re: [ns] Protocol

2007-03-21 Thread Kok-Seng A. Hew
Hi All, I was wondering if anyone had the simulation code for the BCMP protocol or similar protocol of sorts. Network Domain 1 Domain 2 Access Network 1 AN2

[ns] Protocol Questions

2006-06-28 Thread GIorgis Georgakoudis
As far I have seen that there is the FTP protocol on the Application layer, is the HTTP protocol included too? And is there a DHCP protocol simulation on ns?

[ns] Protocol Extension

2006-03-17 Thread Ahmad Khayyat
Hi all, I would like to extend an existing protocol in ns-2. Is it better if I extend its classes, or if I just copy the folder and add my modifications? In case I went for copying the folder, what exactly do I need to do after copying the folder? I guess I will have to rename the classes and

Re: [ns] Protocol Extension

2006-03-17 Thread Ahmad Khayyat
Clarification: By the first option (extending its classes), I meant subclassing the classes of the existing model and implementing the differences/modifications. Subclassing keeps the existing functionality of the original module, and allows me to implement more stuff. I never found anyone

Re: [ns] Protocol Extension

2006-03-17 Thread Ahmad Khayyat
so does this eliminate any of the two approaches? subclassing keeps the origianl class as it was, and introduces a new one that can be used independently. All it does is it saves me from duplicating the common code. copying the subfolder obviously keeps both protocols accessible as well.