<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class="">Hi,<div class=""><br class=""></div><div class="">please use the reply-all option, so that our email exchanges are visible to all the users in the mailing list.</div><div class=""><br class=""></div><div class="">My understanding is that this error has to do with the fact that you tried to use the cs tracer in combination with the CS of NFD. However, the cs tracer works only in the case of the “old” CS of ndnSIM.</div><div class=""><br class=""></div><div class="">I will open a ticket on redmine and, hopefully, this feature will be added soon.</div><div class=""><br class=""></div><div class="">Thanks for letting us know,</div><div class=""><br class=""><div class="">
<div class=""><div class=""><div class=""><span class="" style="float: none; display: inline !important;">Spyridon (Spyros) Mastorakis</span><br class=""><span class="" style="float: none; display: inline !important;">Personal Website: </span><a href="http://cs.ucla.edu/~mastorakis/" class="">http://cs.ucla.edu/~mastorakis/</a><br class=""><span class="" style="float: none; display: inline !important;">Internet Research Laboratory</span><br class=""><span class="" style="float: none; display: inline !important;">Computer Science Department</span><br class=""><span class="" style="float: none; display: inline !important;">UCLA</span></div><div class=""><br class=""></div></div></div></div><div><blockquote type="cite" class=""><div class="">On Dec 28, 2016, at 5:41 PM, gc199211 <<a href="mailto:gc199211@mail.ustc.edu.cn" class="">gc199211@mail.ustc.edu.cn</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">Hi ,I just simplely add two lines  of code in the src/ndnSIM/examples/ndn-tree-cs-tracers.cpp,Here is the whole cpp,The read Line is where I have changed.</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">#include "ns3/core-module.h"<br class="">#include "ns3/network-module.h"<br class="">#include "ns3/ndnSIM-module.h"</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">namespace ns3 {</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">/**<br class=""> * This scenario simulates a tree topology (using topology reader module)<br class=""> *<br class=""> *    /------\      /------\      /------\      /------\<br class=""> *    |leaf-1|      |leaf-2|      |leaf-3|      |leaf-4|<br class=""> *    \------/      \------/      \------/      \------/<br class=""> *         ^          ^                ^           ^<br class=""> *         |          |                |           |<br class=""> *          \        /                  \         /<br class=""> *           \      /                    \       /    10Mbps / 1ms<br class=""> *            \    /                      \     /<br class=""> *             |  |                        |   |<br class=""> *             v  v                        v   v<br class=""> *          /-------\                    /-------\<br class=""> *          | rtr-1 |                    | rtr-2 |<br class=""> *          \-------/                    \-------/<br class=""> *                ^                        ^<br class=""> *                |                        |<br class=""> *                 \                      /  10 Mpbs / 1ms<br class=""> *                  +--------+  +--------+<br class=""> *                           |  |<br class=""> *                           v  v<br class=""> *                        /--------\<br class=""> *                        |  root  |<br class=""> *                        \--------/<br class=""> *<br class=""> *<br class=""> * To run scenario and see what is happening, use the following command:<br class=""> *<br class=""> *     ./waf --run=ndn-tree-cs-tracers<br class=""> */</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">int<br class="">main(int argc, char* argv[])<br class="">{<br class="">  CommandLine cmd;<br class="">  cmd.Parse(argc, argv);</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  AnnotatedTopologyReader topologyReader("", 1);<br class="">  topologyReader.SetFileName("src/ndnSIM/examples/topologies/topo-tree-myself.txt");<br class="">  topologyReader.Read();</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  // Install NDN stack on all nodes<br class="">  ndn::StackHelper ndnHelper;<br class=""><span style="" class=""> <font style="background-color: rgb(255, 153, 204);" class=""><span style="" class=""><span class="Apple-converted-space"> </span>//ndnHelper.SetOldContentStore("ns3::ndn::cs::Lru","MaxSize","100");<br class=""> ndnHelper.setCsSize(100);<br class="">  ndnHelper.setPolicy("nfd::cs::lru");<br class=""></span></font></span>  ndnHelper.InstallAll();<br class="">  // Choosing forwarding strategy<br class="">  ndn::StrategyChoiceHelper::InstallAll("/prefix", "/localhost/nfd/strategy/best-route");</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  // Installing global routing interface on all nodes<br class="">  ndn::GlobalRoutingHelper ndnGlobalRoutingHelper;<br class="">  ndnGlobalRoutingHelper.InstallAll();</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  // Getting containers for the consumer/producer<br class="">  Ptr<Node> consumers[4] = {Names::Find<Node>("leaf-1"), Names::Find<Node>("leaf-2"),<br class="">                            Names::Find<Node>("leaf-3"), Names::Find<Node>("leaf-4")};<br class="">  Ptr<Node> producer = Names::Find<Node>("root");</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  for (int i = 0; i < 4; i++) {<br class="">    ndn::AppHelper consumerHelper("ns3::ndn::ConsumerZipfMandelbrot");<br class="">    consumerHelper.SetAttribute("Frequency", StringValue("100")); // 100 interests a second</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">    // Each consumer will express the same data /root/<seq-no><br class="">    consumerHelper.SetPrefix("/root");<br class="">    ApplicationContainer app = consumerHelper.Install(consumers[i]);<br class="">    app.Start(Seconds(0.01 * i));<br class="">  }</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  ndn::AppHelper producerHelper("ns3::ndn::Producer");<br class="">  producerHelper.SetAttribute("PayloadSize", StringValue("1024"));</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  // Register /root prefix with global routing controller and<br class="">  // install producer that will satisfy Interests in /root namespace<br class="">  ndnGlobalRoutingHelper.AddOrigins("/root", producer);<br class="">  producerHelper.SetPrefix("/root");<br class="">  producerHelper.Install(producer);</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  // Calculate and install FIBs<br class="">  ndn::GlobalRoutingHelper::CalculateRoutes();</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  Simulator::Stop(Seconds(20.0));</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  ndn::CsTracer::InstallAll("tree-cs-trace.txt", Seconds(1));<br class="">  ndn::L3RateTracer::InstallAll("rate-tracer-as-cs-tracer",Seconds(1));<br class="">  ndn::AppDelayTracer::InstallAll("app-delays-trace.txt");</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  Simulator::Run();<br class="">  Simulator::Destroy();</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">  return 0;<br class="">}</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">} // namespace ns3</div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; color: rgb(255, 153, 0);" class="">int<br class="">main(int argc, char* argv[])<br class="">{<br class="">  return ns3::main(argc, argv);<br class="">}<br class=""></div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class=""> </div><div style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px;" class="">It leads to the error,Thank you</div><div align="left" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; font-family: Verdana; color: rgb(192, 192, 192); font-size: 10pt;" class="">2016-12-28<span class="Apple-converted-space"> </span><hr id="SignNameHR" align="left" style="border-width: 1px 0px 0px; width: 122px; height: 1px; border-top-color: rgb(192, 192, 192); border-top-style: solid;" class=""><span id="_FlashSignName" class="">gc199211</span></div><hr style="font-family: 微软雅黑; font-size: 14px; font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; border-width: 1px 0px 0px; height: 1px; border-top-color: rgb(192, 192, 192); border-top-style: solid;" class=""><blockquote id="ntes-flashmail-quote" style="font-style: normal; font-variant-caps: normal; font-weight: normal; letter-spacing: normal; orphans: auto; text-align: start; text-indent: 0px; text-transform: none; white-space: normal; widows: auto; word-spacing: 0px; -webkit-text-stroke-width: 0px; padding-left: 0px; font-family: Verdana; margin-left: 0px; font-size: 10pt;" class=""><div class=""><strong class="">发件人:</strong>"Spyridon (Spyros) Mastorakis" <<a href="mailto:mastorakis@cs.ucla.edu" class="">mastorakis@cs.ucla.edu</a>></div><div class=""><strong class="">发送时间:</strong>2016-12-28 20:31</div><div class=""><strong class="">主题:</strong>Re: [ndnSIM] ndn::StackHelper::setCsSizs()</div><div class=""><strong class="">收件人:</strong>"gc199211"<<a href="mailto:gc199211@mail.ustc.edu.cn" class="">gc199211@mail.ustc.edu.cn</a>></div><div class=""><strong class="">抄送:</strong>"ndnsim"<<a href="mailto:ndnsim@lists.cs.ucla.edu" class="">ndnsim@lists.cs.ucla.edu</a>></div><div class=""> </div><div class="">Hi,<div class=""><br class=""></div><div class="">it is not clear to me why this happened. Could you please give us some more context?</div><div class=""><br class=""></div><div class="">Thanks,</div><div class=""><br class=""><div class=""><div class=""><div class=""><div class=""><span style="float: none; display: inline !important;" class="">Spyridon (Spyros) Mastorakis</span><br class=""><span style="float: none; display: inline !important;" class="">Personal Website: </span><a href="http://cs.ucla.edu/~mastorakis/" class="">http://cs.ucla.edu/~mastorakis/</a><br class=""><span style="float: none; display: inline !important;" class="">Internet Research Laboratory</span><br class=""><span style="float: none; display: inline !important;" class="">Computer Science Department</span><br class=""><span style="float: none; display: inline !important;" class="">UCLA</span></div><div class=""><br class=""></div></div></div></div><div class=""><blockquote type="cite" class=""><div class="">On Dec 28, 2016, at 6:36 AM, gc199211 <<a href="mailto:gc199211@mail.ustc.edu.cn" class="">gc199211@mail.ustc.edu.cn</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><stationery style="text-transform: none; font-style: normal; text-indent: 0px; font-family: 微软雅黑; white-space: normal; letter-spacing: normal; font-size: 14px; font-weight: normal; word-spacing: 0px; font-variant-caps: normal; -webkit-text-stroke-width: 0px;" class=""><div class="">Hello:</div><div class="">     I have found a strange problem on use ndn::StackHelper::setCsSizs(), I want to use nfd::cs::Cs as my ContentStore,Here is my code ,</div><div style="color: rgb(0, 255, 255);" class="">//begin<span class="Apple-converted-space"> </span></div><div class=""><span id="cid:flashmail$w5aTKlp6$1482899803__0@nmmp" class=""><Clip(12-28-12-20-41).png></span></div><div style="color: rgb(0, 255, 255);" class="">//end</div><div class=""> </div><div class="">The code  is quite simple ,But  It leads to a error</div><div class=""><span id="cid:flashmail$JSklAKrb$1482899803__1@nmmp" class=""><Clip(12-28-12-30-21).png></span></div><div class=""> </div><div class="">   The strangest thing is  if I write the code in examples/ndn-simple,It has no problem,But if I write in any other  example cpp,It leads to the error. Thank you!</div><div class=""> </div><div class=""> </div><div class=""> </div><div class=""> </div><div class=""> </div><div style="font-family: Verdana; color: rgb(192, 192, 192); font-size: 10pt;" class=""><div align="left" class="">2016-12-28</div><hr id="SignNameHR" align="left" style="border-width: 1px 0px 0px; width: 122px; height: 1px; border-top-color: rgb(192, 192, 192); border-top-style: solid;" class=""><span id="_FlashSignName" class="">gc199211</span></div></stationery></div></blockquote></div><br class=""></div><br class=""><br class="">__________ Information from ESET NOD32 Antivirus, version of virus signature database 14674 (20161227) __________<br class=""><br class="">The message was checked by ESET NOD32 Antivirus.<br class=""><br class=""><a href="http://www.eset.com/" class="">http://www.eset.com</a></div></blockquote></div></blockquote></div><br class=""></div></body></html>