From arnodana at 163.com Tue Dec 2 19:30:54 2014 From: arnodana at 163.com (arnodana.yue) Date: Wed, 3 Dec 2014 11:30:54 +0800 Subject: [ndnSIM] Overhaul the ndnSim to support wifi-broadcast Message-ID: <000001d00ea9$8be27380$a3a75a80$@163.com> Hi everyone: Recently, I have read the paper "Forwarding Strategies in Named Data Wireless Ad hoc Networks: Design and Evaluation". I am very interesting in the BF and PAF forward strategies, so I want to implementing them. But my work was blocked by the part of overhauling the ndnSim to support the multi-hop wireless communication. In this paper, the author said in the section 5 that ?multi-hop wireless communication is not supported in the current of?cial ndnSIM release, In ndnSIM a node can forward the received Interest over all its network interfaces, except the interface where the Interest arrived from. As a consequence, an Interest received on the 802.11 interface cannot be straightforwardly forwarded over the same interface to permit multi-hop communication. We have overhauled ndnSIM to circumvent this problem and support re-broadcasting on the 802.11 radio interface.?, the Network Device Face Class has been extended to create a new 802.11Face, which is responsible for the actual delivery of packets between the NDN stack and the 802.11 access layer.? I have read some of the source code of ndnSim, but I can?t find out that at where I should do the work to let ndnSim to support broadcasting interests through wifi. By the way, I use NDN as the layer3 protocol without the need of IP protocol. So I am writing this mail to seek some help. I will be appreciated if someone could provide me with some technical details. I am looking forward to your reply. Yours sincerely Arnodana.yue -------------- next part -------------- An HTML attachment was scrubbed... URL: From trokee at bupt.edu.cn Thu Dec 4 11:24:29 2014 From: trokee at bupt.edu.cn (=?gbk?B?yq/Bpg==?=) Date: Thu, 04 Dec 2014 11:24:29 +0800(CST) Subject: [ndnSIM] =?gbk?q?how_to_add_new_fields_in_Interest_packet_and_Dat?= =?gbk?q?a_packet?= Message-ID: <20141204032429.1F4CA19F3DC@mx1.bupt.edu.cn> An HTML attachment was scrubbed... URL: From spiros.mastorakis at gmail.com Wed Dec 3 22:26:03 2014 From: spiros.mastorakis at gmail.com (Spyridon (Spyros) Mastorakis) Date: Wed, 3 Dec 2014 22:26:03 -0800 Subject: [ndnSIM] Overhaul the ndnSim to support wifi-broadcast In-Reply-To: <000001d00ea9$8be27380$a3a75a80$@163.com> References: <000001d00ea9$8be27380$a3a75a80$@163.com> Message-ID: <6386952E-F6C2-41DD-A150-B7F398BD854D@gmail.com> Hello, I am not very familiar with the paper that you mentioned, but I will just express my opinion based on the best of my knowledge of ndnSIM. The thing that you can do for sure is to install the 802.11 Wifi standard provided by ns3 and then the NDN stack in each node. You can also use a mobility helper of ns3 if you want. You can take a look at the ?ndn-simple-wifi.cc? example. As far as the forwarding is concerned, the current version of ndnSIM does support a flooding forwarding strategy. If this strategy does not cover your needs, you can implement your own custom forwarding strategy. You can follow this link for further information: http://ndnsim.net/fw.html I think that the example that I mentioned combined with a custom forwarding broadcast strategy should work for you. Let me know if you need anything else, Spyros > On Dec 2, 2014, at 7:30 PM, arnodana.yue wrote: > > Forwarding Strategies in Named Data Wireless Ad hoc Networks: Design and Evaluation -------------- next part -------------- An HTML attachment was scrubbed... URL: From spiros.mastorakis at gmail.com Wed Dec 3 22:37:57 2014 From: spiros.mastorakis at gmail.com (Spyridon (Spyros) Mastorakis) Date: Wed, 3 Dec 2014 22:37:57 -0800 Subject: [ndnSIM] how to add new fields in Interest packet and Data packet In-Reply-To: <20141204032429.1F4CA19F3DC@mx1.bupt.edu.cn> References: <20141204032429.1F4CA19F3DC@mx1.bupt.edu.cn> Message-ID: Hello, in order to add new fields in the Interest and Data packets, you should modify the corresponding classes. You can do so by accessing and editing the ndn-interest and ndn-data files under the model directory. Based on the modifications that you will do, you may need to modify the wire format and deal with serialization/deserialization issues as well. You can take a look at the directory wire under the model directory. If possible, in order to avoid dealing with the wire format, you can ?cheat" and use some of the existing fields in the way that you want. Spyros > On Dec 3, 2014, at 7:24 PM, ?? wrote: > > how to add new fields in Interest packet and Data packet ? I need modify the packet format to continue my search. > _______________________________________________ > ndnSIM mailing list > ndnSIM at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim From iliamo at CS.UCLA.EDU Wed Dec 3 22:41:15 2014 From: iliamo at CS.UCLA.EDU (Ilya Moiseenko) Date: Wed, 3 Dec 2014 22:41:15 -0800 Subject: [ndnSIM] how to add new fields in Interest packet and Data packet In-Reply-To: <20141204032429.1F4CA19F3DC@mx1.bupt.edu.cn> References: <20141204032429.1F4CA19F3DC@mx1.bupt.edu.cn> Message-ID: <4A355E8F-9AF6-4019-B551-96630B287840@cs.ucla.edu> You can also use NS3 Tags to augment packets with any custom information. Ilya On Dec 3, 2014, at 7:24 PM, ?? wrote: > how to add new fields in Interest packet and Data packet ? I need modify the packet format to continue my search. > _______________________________________________ > ndnSIM mailing list > ndnSIM at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim From iliamo at CS.UCLA.EDU Wed Dec 3 22:44:47 2014 From: iliamo at CS.UCLA.EDU (Ilya Moiseenko) Date: Wed, 3 Dec 2014 22:44:47 -0800 Subject: [ndnSIM] Overhaul the ndnSim to support wifi-broadcast In-Reply-To: <000001d00ea9$8be27380$a3a75a80$@163.com> References: <000001d00ea9$8be27380$a3a75a80$@163.com> Message-ID: <40F2CC1B-C67F-48F9-8698-C0D68A526FD0@cs.ucla.edu> You can check this example of the use of NDN with customized link layer https://github.com/cawka/ndnSIM-nom-rapid-car2car/tree/master/extensions Ilya On Dec 2, 2014, at 7:30 PM, arnodana.yue wrote: > Hi everyone: > > Recently, I have read the paper "Forwarding Strategies in Named Data Wireless Ad hoc Networks: Design and Evaluation". I am very interesting in the BF and PAF forward strategies, so I want to implementing them. But my work was blocked by the part of overhauling the ndnSim to support the multi-hop wireless communication. In this paper, the author said in the section 5 that ?multi-hop wireless communication is not supported in the current of?cial ndnSIM release, In ndnSIM a node can forward the received Interest over all its network interfaces, except the interface where the Interest arrived from. As a consequence, an Interest received on the 802.11 interface cannot be straightforwardly forwarded over the same interface to permit multi-hop communication. We have overhauled ndnSIM to circumvent this problem and support re-broadcasting on the 802.11 radio interface.?, the Network Device Face Class has been extended to create a new 802.11Face, which is responsible for the actual delivery of packets between the NDN stack and the 802.11 access layer.? > I have read some of the source code of ndnSim, but I can?t find out that at where I should do the work to let ndnSim to support broadcasting interests through wifi. By the way, I use NDN as the layer3 protocol without the need of IP protocol. > So I am writing this mail to seek some help. I will be appreciated if someone could provide me with some technical details. I am looking forward to your reply. > > Yours sincerely > > Arnodana.yue > > > _______________________________________________ > ndnSIM mailing list > ndnSIM at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim -------------- next part -------------- An HTML attachment was scrubbed... URL: From wuzhen_mail at 163.com Thu Dec 4 01:25:42 2014 From: wuzhen_mail at 163.com (wuzhen_mail) Date: Thu, 04 Dec 2014 17:25:42 +0800 Subject: [ndnSIM] Known face' rate and size of received data packet, how to calculate the used bandwidth? Message-ID: <1bb6voy4hbpth25lfqnovrxi.1417684552876@email.android.com> An HTML attachment was scrubbed... URL: -------------- next part -------------- Dear, As it said in titile, I have known the number of face received data packet per second ,How to calculate the data flow used bandwidth? thanks, I am waitting for your reply. From wuzhen_mail at 163.com Thu Dec 4 01:29:44 2014 From: wuzhen_mail at 163.com (wuzhen_mail) Date: Thu, 04 Dec 2014 17:29:44 +0800 Subject: [ndnSIM] Known face' rate and size of received data packet, how to calculate the used bandwidth? Message-ID: An HTML attachment was scrubbed... URL: -------------- next part -------------- Dear, As it said in titile, I have known the number of face received data packet per second ,How to calculate the data flow used bandwidth? thanks, I am waitting for your reply. Wu From iliamo at CS.UCLA.EDU Thu Dec 4 10:57:32 2014 From: iliamo at CS.UCLA.EDU (Ilya Moiseenko) Date: Thu, 4 Dec 2014 10:57:32 -0800 Subject: [ndnSIM] Known face' rate and size of received data packet, how to calculate the used bandwidth? In-Reply-To: References: Message-ID: <075CB5A5-5A84-42DD-A957-FECD9D66280F@cs.ucla.edu> number of Interest * Interest size + number of Data * Data size > Dear, > As it said in titile, I have known the number of face received data packet per second ,How to calculate the data flow used bandwidth? > > thanks, I am waitting for your reply. > > Wu > > > _______________________________________________ > ndnSIM mailing list > ndnSIM at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim From trokee at bupt.edu.cn Fri Dec 5 17:48:07 2014 From: trokee at bupt.edu.cn (trokee at bupt.edu.cn) Date: Fri, 05 Dec 2014 17:48:07 +0800(CST) Subject: [ndnSIM] =?gbk?q?how_to_add_new_fields_in_Interest_packet_and_Dat?= =?gbk?q?a_packet?= Message-ID: <20141205094807.D5D9219F3AE@mx1.bupt.edu.cn> An HTML attachment was scrubbed... URL: From trokee at bupt.edu.cn Fri Dec 5 17:49:54 2014 From: trokee at bupt.edu.cn (trokee at bupt.edu.cn) Date: Fri, 05 Dec 2014 17:49:54 +0800(CST) Subject: [ndnSIM] =?gbk?q?how_to_add_new_fields_in_Interest_packet_and_Dat?= =?gbk?q?a_packet?= Message-ID: <20141205094954.25E1E19F390@mx1.bupt.edu.cn> An HTML attachment was scrubbed... URL: From trokee at bupt.edu.cn Sat Dec 6 17:39:04 2014 From: trokee at bupt.edu.cn (=?gbk?B?yq/Bpg==?=) Date: Sat, 06 Dec 2014 17:39:04 +0800(CST) Subject: [ndnSIM] =?gbk?q?Failure_in_running_actual_simulation_with_visual?= =?gbk?q?izer?= Message-ID: <20141206093904.BACE519F36F@mx1.bupt.edu.cn> An HTML attachment was scrubbed... URL: From amin1431 at yahoo.com Sat Dec 6 12:28:51 2014 From: amin1431 at yahoo.com (amin1431) Date: Sat, 6 Dec 2014 20:28:51 +0000 (UTC) Subject: [ndnSIM] Per-interface strategies in ndnSIM Message-ID: <854136881.6014064.1417897731416.JavaMail.yahoo@jws10691.mail.bf1.yahoo.com> Hi Spyros :-)Thank you for your response. I tried my best for better understanding of classes. I have two questions: 1- If we use the below Forwarding Strategy with the Interest limit, the rate will be assigned per-interface?ndnHelper.SetForwardingStrategy ("ns3::ndn::fw::Flooding::PerOutFaceLimits" "Limit", "ns3::ndn::Limits::Rate"); ... ndnHelper.Install (nodes); 2- In the above code, we can assign the Interest Rate Limit. I want to assign a new formula to change periodically the Interest Rate Limit. The initial idea is in:?http://ndnsim.net/fw.html#strategies-with-interest-limits?. Where is it possible to write a new Interest Limit? Can we define it in the main function (in *.cc) as a global variable? Could you please give me an hint? I will be thankful if you or anyone can guide me in these questions. Regards,Amin -------- Original Message -------- | Subject: | Re: [ndnSIM] Per-interface strategies in ndnSIM | | Date: | Sat, 15 Nov 2014 10:58:54 -0800 | | From: | Spyridon (Spyros) Mastorakis | | To: | amin1431 | | CC: | Ndnsim | Hello Amin, I will answer your question, based on the best of my knowledge in ndnSIM. Alex can complement my answer if anything is misleading or incomplete. There is a template class PerOutFaceLimits that I think it would be helpful. You can write a specialization of this template to apply it to your forwarding strategy. Moreover, each forwarding strategy uses a convention about green, yellow and red faces. There is a number of forwarding strategies implemented, but you can also create your own custom forwarding strategy based on the already implemented strategies.? Follow the first link to take a look at the PerOutFaceLimits template class and the second link for the forwarding strategies (with and without limits): http://ndnsim.net/doxygen/classns3_1_1ndn_1_1fw_1_1_per_out_face_limits.html#a3ea8ba5325d54412c5894e02fb519839 http://ndnsim.net/fw.html If you eventually use the limits, do not forget to enable them first at your simulation scenario (there are some examples at the second aforementioned link). Let me know if you need anything else. Kind regards, Spyros Mastorakis On Nov 14, 2014, at 11:54 AM, amin1431 wrote: Hi Alex, Could you please tell me in which section of the ndnSIM classes/functions we can do some strategy per-interface?Is there any assigned class for that? for instance, change the rate of InInterest or add a value into data packet per interface not for all incoming data packets. Thanks a lot for your all support. /Amin _______________________________________________ ndnSIM mailing list ndnSIM at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim -------------- next part -------------- An HTML attachment was scrubbed... URL: From amin1431 at yahoo.com Sat Dec 6 12:28:51 2014 From: amin1431 at yahoo.com (amin1431) Date: Sat, 6 Dec 2014 20:28:51 +0000 (UTC) Subject: [ndnSIM] Per-interface strategies in ndnSIM Message-ID: <854136881.6014064.1417897731416.JavaMail.yahoo@jws10691.mail.bf1.yahoo.com> Hi Spyros :-)Thank you for your response. I tried my best for better understanding of classes. I have two questions: 1- If we use the below Forwarding Strategy with the Interest limit, the rate will be assigned per-interface?ndnHelper.SetForwardingStrategy ("ns3::ndn::fw::Flooding::PerOutFaceLimits" "Limit", "ns3::ndn::Limits::Rate"); ... ndnHelper.Install (nodes); 2- In the above code, we can assign the Interest Rate Limit. I want to assign a new formula to change periodically the Interest Rate Limit. The initial idea is in:?http://ndnsim.net/fw.html#strategies-with-interest-limits?. Where is it possible to write a new Interest Limit? Can we define it in the main function (in *.cc) as a global variable? Could you please give me an hint? I will be thankful if you or anyone can guide me in these questions. Regards,Amin -------- Original Message -------- | Subject: | Re: [ndnSIM] Per-interface strategies in ndnSIM | | Date: | Sat, 15 Nov 2014 10:58:54 -0800 | | From: | Spyridon (Spyros) Mastorakis | | To: | amin1431 | | CC: | Ndnsim | Hello Amin, I will answer your question, based on the best of my knowledge in ndnSIM. Alex can complement my answer if anything is misleading or incomplete. There is a template class PerOutFaceLimits that I think it would be helpful. You can write a specialization of this template to apply it to your forwarding strategy. Moreover, each forwarding strategy uses a convention about green, yellow and red faces. There is a number of forwarding strategies implemented, but you can also create your own custom forwarding strategy based on the already implemented strategies.? Follow the first link to take a look at the PerOutFaceLimits template class and the second link for the forwarding strategies (with and without limits): http://ndnsim.net/doxygen/classns3_1_1ndn_1_1fw_1_1_per_out_face_limits.html#a3ea8ba5325d54412c5894e02fb519839 http://ndnsim.net/fw.html If you eventually use the limits, do not forget to enable them first at your simulation scenario (there are some examples at the second aforementioned link). Let me know if you need anything else. Kind regards, Spyros Mastorakis On Nov 14, 2014, at 11:54 AM, amin1431 wrote: Hi Alex, Could you please tell me in which section of the ndnSIM classes/functions we can do some strategy per-interface?Is there any assigned class for that? for instance, change the rate of InInterest or add a value into data packet per interface not for all incoming data packets. Thanks a lot for your all support. /Amin _______________________________________________ ndnSIM mailing list ndnSIM at lists.cs.ucla.edu http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim -------------- next part -------------- An HTML attachment was scrubbed... URL: From wuzhen_mail at 163.com Sat Dec 6 17:07:11 2014 From: wuzhen_mail at 163.com (Zhen Wu) Date: Sun, 7 Dec 2014 09:07:11 +0800 (CST) Subject: [ndnSIM] How to caculate the bandwidth have been used Message-ID: <7d4711a9.7da.14a224939ea.Coremail.wuzhen_mail@163.com> Dear, In ndnSIM, the unit of data packet size is kb or bit ? For example, the link bandwidth is 10M , I set data packet size 1024, rate 50 per second. In this link, how much bandwidth have been used and remaining BW ? How to caculate? And i try output the size of interest packet, it is 0. Is this true? Best wishes to you. waitting your reply. Wu -------------- next part -------------- An HTML attachment was scrubbed... URL: From spiros.mastorakis at gmail.com Sat Dec 6 23:09:50 2014 From: spiros.mastorakis at gmail.com (Spyridon (Spyros) Mastorakis) Date: Sat, 6 Dec 2014 23:09:50 -0800 Subject: [ndnSIM] Per-interface strategies in ndnSIM In-Reply-To: <854136881.6014064.1417897731416.JavaMail.yahoo@jws10691.mail.bf1.yahoo.com> References: <854136881.6014064.1417897731416.JavaMail.yahoo@jws10691.mail.bf1.yahoo.com> Message-ID: <43BDBE79-8EF5-48B5-BCA7-F4F3264F4016@gmail.com> Hello Amin, About the question #1: Yes, using the particular forwarding strategy, the rate limits will be assigned per outgoing face. About your question #2: In general, you have to call periodically the UpdateCurrentLimit method of the LimitsRate class that accepts a double variable as an argument. This double variable will be the new limit value. However, keep in mind that he existing implementation of the limits takes into account two double variables and multiply them (assuming that the first one is the delay and the second one is the rate). If you want to have an equation with fundamentally different rationale than having two double variables and just multiple them to compute the limit, then you have to create your own limit class and inherit the Limit class of the ndn-limits file. You will also have to create more methods in order to customize the rate computation in the way that you want (e.g. if you want to have more than two or different parameters). Generally, you can take a look at the ndn-limits, ndn-limits-rate and ndn-limits-window files and see if they are ok for you. Hope that this helps, Spyros > On Dec 6, 2014, at 12:28 PM, amin1431 wrote: > > Hi Spyros :-) > Thank you for your response. I tried my best for better understanding of classes. > > I have two questions: > > 1- If we use the below Forwarding Strategy with the Interest limit, the rate will be assigned per-interface? > ndnHelper.SetForwardingStrategy ("ns3::ndn::fw::Flooding::PerOutFaceLimits" > "Limit", "ns3::ndn::Limits::Rate"); > ... > ndnHelper.Install (nodes); > > 2- In the above code, we can assign the Interest Rate Limit. I want to assign a new formula to change periodically the Interest Rate Limit. The initial idea is in: http://ndnsim.net/fw.html#strategies-with-interest-limits . Where is it possible to write a new Interest Limit? Can we define it in the main function (in *.cc) as a global variable? Could you please give me an hint? > > > I will be thankful if you or anyone can guide me in these questions. > > > Regards, > Amin > > > > -------- Original Message -------- > Subject: Re: [ndnSIM] Per-interface strategies in ndnSIM > Date: Sat, 15 Nov 2014 10:58:54 -0800 > From: Spyridon (Spyros) Mastorakis > To: amin1431 > CC: Ndnsim > > > Hello Amin, > > I will answer your question, based on the best of my knowledge in ndnSIM. Alex can complement my answer if anything is misleading or incomplete. > > There is a template class PerOutFaceLimits that I think it would be helpful. You can write a specialization of this template to apply it to your forwarding strategy. Moreover, each forwarding strategy uses a convention about green, yellow and red faces. There is a number of forwarding strategies implemented, but you can also create your own custom forwarding strategy based on the already implemented strategies. > > Follow the first link to take a look at the PerOutFaceLimits template class and the second link for the forwarding strategies (with and without limits): http://ndnsim.net/doxygen/classns3_1_1ndn_1_1fw_1_1_per_out_face_limits.html#a3ea8ba5325d54412c5894e02fb519839 > http://ndnsim.net/fw.html > > If you eventually use the limits, do not forget to enable them first at your simulation scenario (there are some examples at the second aforementioned link). > > Let me know if you need anything else. > Kind regards, > Spyros Mastorakis > >> On Nov 14, 2014, at 11:54 AM, amin1431 > wrote: >> >> Hi Alex, >> >> Could you please tell me in which section of the ndnSIM classes/functions we can do some strategy per-interface? >> Is there any assigned class for that? for instance, change the rate of InInterest or add a value into data packet per interface not for all incoming data packets. >> >> >> Thanks a lot for your all support. >> >> /Amin >> >> _______________________________________________ >> ndnSIM mailing list >> ndnSIM at lists.cs.ucla.edu >> http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim > > > _______________________________________________ > ndnSIM mailing list > ndnSIM at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/ndnsim -------------- next part -------------- An HTML attachment was scrubbed... URL: From liuzongzhen at cstnet.cn Thu Dec 18 23:51:23 2014 From: liuzongzhen at cstnet.cn (=?GBK?B?wfXX3NXm?=) Date: Fri, 19 Dec 2014 15:51:23 +0800 (GMT+08:00) Subject: [ndnSIM] Redirect Interest based on Interest information Message-ID: <15a8272.254f2.14a61879563.Coremail.liuzongzhen@cstnet.cn> Hi? I add a new bit in the Interest , and this bit is to store a Face named newOutFace. I also add a new FIB entry using m_fib->Add (prefix, newOutFace, metric) in OnInterest method of ndn-forwarding-strategy.cc before Ptr pitEntry = m_pit->Lookup(*interest), to redirect the Interest from newOutFace . But I find the FullDelay when tracing the Mobile Consumer is very long, e.g. even 30 seconds. Is my logic wrong? Could you give me some hints about this problem? Or What should I do to alter the logic? Thanks in advance! -- Liu Zongzhen -------------- next part -------------- An HTML attachment was scrubbed... URL: From wadekahn at clarkson.edu Wed Dec 24 14:01:51 2014 From: wadekahn at clarkson.edu (Hitesh Wadekar) Date: Wed, 24 Dec 2014 17:01:51 -0500 Subject: [ndnSIM] Global Routing: Algorithm for calculation path Message-ID: Hello Guys, I am Hitesh, a MS student from Clarkson University. Currently, I am exploring ndnSIM code, specially for GlobalRouter. GlobalRouter is installing on every node, in order to calculate shortest path. Also, while we run the application, we are giving "AddOrigin" which is turn out localprefixes for the node (specifed). So, overall my understanding is GlobalRouter calculation path will update FIB for only those specified "origin", not for all, otherwise it won't. Could you please verify whether my understanding is right or not? Also, It will be really appreciated if someone give me a little more information about design strategies considered while implementing GlobalRouter, specially for "Boost" shortest path, distanceMap, weight initialization. Thank you. Regards, Hitesh Wadekar -------------- next part -------------- An HTML attachment was scrubbed... URL: From trokee at bupt.edu.cn Sun Dec 28 17:55:38 2014 From: trokee at bupt.edu.cn (=?gbk?B?yq/Bpg==?=) Date: Sun, 28 Dec 2014 17:55:38 +0800(CST) Subject: [ndnSIM] =?gbk?q?Whether_a_=27NetDeviceFace=27_change_for_Configu?= =?gbk?q?ration_of_wireless_simulation_environment_in_ndnsim=A3=BF?= Message-ID: <20141228095538.15FA019F374@mx1.bupt.edu.cn> An HTML attachment was scrubbed... URL: From delavar.hadi at yahoo.com Fri Dec 19 07:38:54 2014 From: delavar.hadi at yahoo.com (hadi delavar) Date: Fri, 19 Dec 2014 15:38:54 -0000 Subject: [ndnSIM] Congestion Control in Vehicular Named Data Networking Message-ID: <1961405699.1314836.1419003349519.JavaMail.yahoo@jws10633.mail.bf1.yahoo.com> Hi Alex & ALL Is there any solution to control congestion in Vehicular Ad-hoc Networking Based on NDN?I mean applying Congestion Control in application like "Rapid Traffic Information Dissemination" which have been discussed in http://lasr.cs.ucla.edu/afanasyev/data/files/Wang/nom.pdfBest Regards HAADI -------------- next part -------------- An HTML attachment was scrubbed... URL: