From aa at cs.ucla.edu Tue Nov 1 12:47:49 2016 From: aa at cs.ucla.edu (Alex Afanasyev) Date: Tue, 01 Nov 2016 12:47:49 -0700 (PDT) Subject: [Ndn-interest] [CFP] ACM SIGCOMM 2017 - Standard and Experience Track Message-ID: <5818f165.519f620a.df71c.be31@mx.google.com> ==================================================== CALL FOR PAPERS: Standard Track, Experience Track ACM SIGCOMM 2017 UCLA, Los Angeles, CA, USA on August 21-25, 2017 http://conferences.sigcomm.org/sigcomm/2017/cfp.html ==================================================== The ACM SIGCOMM 2017 conference seeks papers describing significant research contributions to the field of computer and data communication networks. We invite submissions on a wide range of networking research, including, but not limited to: - Network architectures and algorithms - Distributed systems design, implementation & application - Enterprise, datacenter, and storage area networks - SDN, NFV, and network programming - Experimental results from operational networks or network applications - Measurement of and statistics methods/machine learning/dat mining applied to networks - Network monitoring and diagnosis - Formal methods and network verification - Economic aspects of the Internet - Energy-aware communication - Network management and operations - Network security and privacy, censorship, transparency - Network, transport, and application-layer protocols - Fault-tolerance, reliability, and troubleshooting - Operating system and host support for networking - Novel physical layer technologies - Networking hardware (Router/switch/NIC) design - P2P and content (including video) distribution networks - Cloud and wide-area networking systems & infrastructure - Resource management, QoS, and signaling - Routing, traffic engineering, switching, and addressing - Wireless, mobile, and sensor networks - Edge, access, and home networks - Innovative uses of network data beyond communication In addition to the main conference, SIGCOMM 2017 will have a series of co-located workshops, tutorials, poster and demo sessions, a travel grant program, and conference best paper(s) and SIGCOMM awards. For the criteria for the selection of the conference best paper award(s), see Best Paper Award Guidelines. SUBMISSIONS SIGCOMM is a highly selective conference where full papers typically report novel results firmly substantiated by experimentation, deployment, simulation, or analysis. Submissions should be in two-column, 10-point format, and can be up to 12 pages in length with as many additional pages as necessary for references. Detailed submission instructions can be found on the conference web site. EXPERIENCE TRACK In addition to submissions considered for the standard track, SIGCOMM 2017 will also include a submission category for experience papers on the design, analysis, and evaluation of techniques in commercial (or otherwise widespread) deployment. Authors must explicitly indicate whether a submission is to be considered for this track or the standard track. (Further information in the detailed submission instructions.) ETHICAL CONCERNS Authors must as part of the submission process attest that their work complies with all applicable ethical standards of their home institution(s), including, but not limited to privacy policies and policies on experiments involving humans. Note that submitting research for approval by one's institution's ethics review body is necessary, but not sufficient ??? in cases where the PC has concerns about the ethics of the work in a submission, the PC will have its own discussion of the ethics of that work. The PC takes a broad view of what constitutes an ethical concern, and authors agree to be available at any time during the review process to rapidly respond to queries from the PC chairs regarding ethical standards. ==================================================== IMPORTANT DATES Paper Registration Deadline: January 20, 2017 (5:00pm PST) Paper Submission Deadline: January 27, 2017 (5:00pm PST) Acceptance Notification: May 5, 2017 Conference dates: August 21-25, 2017 ==================================================== From neogeoss1 at gmail.com Wed Nov 2 01:52:07 2016 From: neogeoss1 at gmail.com (Hwang In Chan) Date: Wed, 2 Nov 2016 17:52:07 +0900 Subject: [Ndn-interest] Question on Exclude? Message-ID: Dear NDN researchers, I am studying code on interest.cpp. I am particularly curious on the name comparison with exclude() which is specified in https://github.com/NDNUtils/NDNSIM/blob/master/src/ndnSIM/ndn-cxx/src/interest.cpp#L171-L196 // check Exclude // Exclude won't be violated if Interest Name is same as Data full Name if (!getExclude().empty() && fullNameLength > interestNameLength) { if (interestNameLength == fullNameLength - 1) { // component to exclude is the digest if (getExclude().isExcluded(data.getProducerUid().get(interestNameLength))) return false; // There's opportunity to inspect the Exclude filter and determine whether // the digest would make a difference. // eg. "AA" doesn't exclude any digest - // fullName not needed; // "AA" and // "ffffffffffffffffffffffffffffffff // " // excludes all digests - fullName not needed; // "80000000000000000000000000000000 // " // excludes some digests - fullName required // But Interests that contain the exact Data Name before digest and also // contain Exclude filter is too rare to optimize for, so we request // fullName no mater what's in the Exclude filter. } else { // component to exclude is not the digest if (getExclude().isExcluded(dataNamePuid.get(interestNameLength))) return false; } } What does it exactly do>? and Can I delete this code ? If I remove them, is there any problem happening? Best wishes, inchan Hwang -------------- next part -------------- An HTML attachment was scrubbed... URL: From Matteo.Bertolino at eurecom.fr Wed Nov 2 02:31:00 2016 From: Matteo.Bertolino at eurecom.fr (Matteo Bertolino) Date: Wed, 02 Nov 2016 10:31:00 +0100 Subject: [Ndn-interest] Compiling ndn-cxx program without waf Message-ID: <20161102103100.5nwnn1utk4wgc8ok@webmail.eurecom.fr> Good morning, I would like to compile an ndn-cxx program without use the waf command. I tried: g++ -o out matproducer.cpp -std=c++11 $(pkg-config --cflags --libs libndn-cxx) and g++ matproducer.cpp `pkg-config --cflags --libs libndn.cxx` But I obtain this error: matproducer.cpp:5:20: fatal error: face.hpp: No such file or directory #include "face.hpp" ^ compilation terminated. Any suggestions? Thank you very much, Matteo ------------------------------------------------------------------------------- This message was sent using EURECOM Webmail: http://webmail.eurecom.fr From mesarpe at gmail.com Wed Nov 2 03:18:42 2016 From: mesarpe at gmail.com (=?UTF-8?Q?C=C3=A9sar_A=2E_Bernardini?=) Date: Wed, 2 Nov 2016 11:18:42 +0100 Subject: [Ndn-interest] Compiling ndn-cxx program without waf In-Reply-To: <20161102103100.5nwnn1utk4wgc8ok@webmail.eurecom.fr> References: <20161102103100.5nwnn1utk4wgc8ok@webmail.eurecom.fr> Message-ID: You have to include the path towards the library in the gcc command. The error is highlighting that it can not find the face.hpp file. I am not sure, but I think is -I (capital i) and the path towards the file. 2016-11-02 10:31 GMT+01:00 Matteo Bertolino : > Good morning, > I would like to compile an ndn-cxx program without use the waf command. > > I tried: g++ -o out matproducer.cpp -std=c++11 $(pkg-config --cflags > --libs > libndn-cxx) > > and > > g++ matproducer.cpp `pkg-config --cflags --libs libndn.cxx` > > But I obtain this error: > > matproducer.cpp:5:20: fatal error: face.hpp: No such file or directory > #include "face.hpp" > ^ > compilation terminated. > > Any suggestions? > Thank you very much, > Matteo > > ------------------------------------------------------------ > ------------------- > This message was sent using EURECOM Webmail: http://webmail.eurecom.fr > > _______________________________________________ > Ndn-interest mailing list > Ndn-interest at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-interest > -------------- next part -------------- An HTML attachment was scrubbed... URL: From pedosb at gmail.com Wed Nov 2 03:32:11 2016 From: pedosb at gmail.com (Pedro Batista) Date: Wed, 2 Nov 2016 11:32:11 +0100 Subject: [Ndn-interest] Compiling ndn-cxx program without waf In-Reply-To: References: <20161102103100.5nwnn1utk4wgc8ok@webmail.eurecom.fr> Message-ID: I think you should include "ndn-cxx/face.hpp" instead of "face.hpp". -- Pedro Batista PhD Student, Federal University of Par? - http://www.ufpa.br On Wed, Nov 2, 2016 at 11:18 AM, C?sar A. Bernardini wrote: > You have to include the path towards the library in the gcc command. > > The error is highlighting that it can not find the face.hpp file. I am not > sure, but I think is -I (capital i) and the path towards the file. > > 2016-11-02 10:31 GMT+01:00 Matteo Bertolino : > >> Good morning, >> I would like to compile an ndn-cxx program without use the waf command. >> >> I tried: g++ -o out matproducer.cpp -std=c++11 $(pkg-config --cflags >> --libs >> libndn-cxx) >> >> and >> >> g++ matproducer.cpp `pkg-config --cflags --libs libndn.cxx` >> >> But I obtain this error: >> >> matproducer.cpp:5:20: fatal error: face.hpp: No such file or directory >> #include "face.hpp" >> ^ >> compilation terminated. >> >> Any suggestions? >> Thank you very much, >> Matteo >> >> ------------------------------------------------------------ >> ------------------- >> This message was sent using EURECOM Webmail: http://webmail.eurecom.fr >> >> _______________________________________________ >> Ndn-interest mailing list >> Ndn-interest at lists.cs.ucla.edu >> http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-interest >> > > > _______________________________________________ > Ndn-interest mailing list > Ndn-interest at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-interest > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Matteo.Bertolino at eurecom.fr Wed Nov 2 03:41:13 2016 From: Matteo.Bertolino at eurecom.fr (Matteo Bertolino) Date: Wed, 02 Nov 2016 11:41:13 +0100 Subject: [Ndn-interest] Compiling ndn-cxx program without waf In-Reply-To: References: <20161102103100.5nwnn1utk4wgc8ok@webmail.eurecom.fr> Message-ID: <20161102114113.m2p2klnhxc0wwgk8@webmail.eurecom.fr> I followed your suggestion including all path until the end of compilation error. Unfortunately, , when I try to execute the file, I obtain " executable format error". I absolutely need a way to compile ndn-cxx file without waf. Does nobody already tried to do it? Matteo Quoting "C?sar A. Bernardini" : > You have to include the path towards the library in the gcc command. > > The error is highlighting that it can not find the face.hpp file. I am not > sure, but I think is -I (capital i) and the path towards the file. > > 2016-11-02 10:31 GMT+01:00 Matteo Bertolino : > >> Good morning, >> I would like to compile an ndn-cxx program without use the waf command. >> >> I tried: g++ -o out matproducer.cpp -std=c++11 $(pkg-config --cflags >> --libs >> libndn-cxx) >> >> and >> >> g++ matproducer.cpp `pkg-config --cflags --libs libndn.cxx` >> >> But I obtain this error: >> >> matproducer.cpp:5:20: fatal error: face.hpp: No such file or directory >> #include "face.hpp" >> ^ >> compilation terminated. >> >> Any suggestions? >> Thank you very much, >> Matteo >> >> ------------------------------------------------------------ >> ------------------- >> This message was sent using EURECOM Webmail: http://webmail.eurecom.fr >> >> _______________________________________________ >> Ndn-interest mailing list >> Ndn-interest at lists.cs.ucla.edu >> http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-interest >> > ------------------------------------------------------------------------------- This message was sent using EURECOM Webmail: http://webmail.eurecom.fr From mesarpe at gmail.com Wed Nov 2 03:47:18 2016 From: mesarpe at gmail.com (=?UTF-8?Q?C=C3=A9sar_A=2E_Bernardini?=) Date: Wed, 2 Nov 2016 11:47:18 +0100 Subject: [Ndn-interest] Compiling ndn-cxx program without waf In-Reply-To: <20161102114113.m2p2klnhxc0wwgk8@webmail.eurecom.fr> References: <20161102103100.5nwnn1utk4wgc8ok@webmail.eurecom.fr> <20161102114113.m2p2klnhxc0wwgk8@webmail.eurecom.fr> Message-ID: Mateo, could you share the compilation error or the G++ output. 2016-11-02 11:41 GMT+01:00 Matteo Bertolino : > I followed your suggestion including all path until the end of compilation > error. Unfortunately, , when I try to execute the file, I obtain " > executable format error". > > I absolutely need a way to compile ndn-cxx file without waf. Does nobody > already tried to do it? > > Matteo > > > Quoting "C?sar A. Bernardini" : > > You have to include the path towards the library in the gcc command. >> >> The error is highlighting that it can not find the face.hpp file. I am not >> sure, but I think is -I (capital i) and the path towards the file. >> >> 2016-11-02 10:31 GMT+01:00 Matteo Bertolino > >: >> >> Good morning, >>> I would like to compile an ndn-cxx program without use the waf command. >>> >>> I tried: g++ -o out matproducer.cpp -std=c++11 $(pkg-config --cflags >>> --libs >>> libndn-cxx) >>> >>> and >>> >>> g++ matproducer.cpp `pkg-config --cflags --libs libndn.cxx` >>> >>> But I obtain this error: >>> >>> matproducer.cpp:5:20: fatal error: face.hpp: No such file or directory >>> #include "face.hpp" >>> ^ >>> compilation terminated. >>> >>> Any suggestions? >>> Thank you very much, >>> Matteo >>> >>> ------------------------------------------------------------ >>> ------------------- >>> This message was sent using EURECOM Webmail: http://webmail.eurecom.fr >>> >>> _______________________________________________ >>> Ndn-interest mailing list >>> Ndn-interest at lists.cs.ucla.edu >>> http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-interest >>> >>> >> > > > ------------------------------------------------------------ > ------------------- > This message was sent using EURECOM Webmail: http://webmail.eurecom.fr > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Matteo.Bertolino at eurecom.fr Wed Nov 2 06:38:40 2016 From: Matteo.Bertolino at eurecom.fr (Matteo Bertolino) Date: Wed, 02 Nov 2016 14:38:40 +0100 Subject: [Ndn-interest] Compiling ndn-cxx program without waf In-Reply-To: References: <20161102103100.5nwnn1utk4wgc8ok@webmail.eurecom.fr> <20161102114113.m2p2klnhxc0wwgk8@webmail.eurecom.fr> Message-ID: <20161102143840.vdfz7nnesggskcwo@webmail.eurecom.fr> Sure: ~/Desktop/mini3/due/ndn-cxx/examples$ g++ -o out matproducer.cpp -std=c++11 -lndn-cxx -lpthread -I/usr/local/include/ndn-cxx/ -I/home/bertolino/Desktop/mini3/due/ndn-cxx/src/ /usr/bin/ld: /tmp/ccdg7qOe.o: undefined reference to symbol '_ZN5boost6system15system_categoryEv' //usr/lib/x86_64-linux-gnu/libboost_system.so.1.54.0: error adding symbols: DSO missing from command line collect2: error: ld returned 1 exit status Any ideas? Thanks, Matteo Quoting "C?sar A. Bernardini" : > Mateo, could you share the compilation error or the G++ output. > > 2016-11-02 11:41 GMT+01:00 Matteo Bertolino : > >> I followed your suggestion including all path until the end of compilation >> error. Unfortunately, , when I try to execute the file, I obtain " >> executable format error". >> >> I absolutely need a way to compile ndn-cxx file without waf. Does nobody >> already tried to do it? >> >> Matteo >> >> >> Quoting "C?sar A. Bernardini" : >> >> You have to include the path towards the library in the gcc command. >>> >>> The error is highlighting that it can not find the face.hpp file. I am not >>> sure, but I think is -I (capital i) and the path towards the file. >>> >>> 2016-11-02 10:31 GMT+01:00 Matteo Bertolino >> >: >>> >>> Good morning, >>>> I would like to compile an ndn-cxx program without use the waf command. >>>> >>>> I tried: g++ -o out matproducer.cpp -std=c++11 $(pkg-config --cflags >>>> --libs >>>> libndn-cxx) >>>> >>>> and >>>> >>>> g++ matproducer.cpp `pkg-config --cflags --libs libndn.cxx` >>>> >>>> But I obtain this error: >>>> >>>> matproducer.cpp:5:20: fatal error: face.hpp: No such file or directory >>>> #include "face.hpp" >>>> ^ >>>> compilation terminated. >>>> >>>> Any suggestions? >>>> Thank you very much, >>>> Matteo >>>> >>>> ------------------------------------------------------------ >>>> ------------------- >>>> This message was sent using EURECOM Webmail: http://webmail.eurecom.fr >>>> >>>> _______________________________________________ >>>> Ndn-interest mailing list >>>> Ndn-interest at lists.cs.ucla.edu >>>> http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-interest >>>> >>>> >>> >> >> >> ------------------------------------------------------------ >> ------------------- >> This message was sent using EURECOM Webmail: http://webmail.eurecom.fr >> >> > ------------------------------------------------------------------------------- This message was sent using EURECOM Webmail: http://webmail.eurecom.fr From mesarpe at gmail.com Wed Nov 2 06:59:37 2016 From: mesarpe at gmail.com (=?UTF-8?Q?C=C3=A9sar_A=2E_Bernardini?=) Date: Wed, 2 Nov 2016 14:59:37 +0100 Subject: [Ndn-interest] Compiling ndn-cxx program without waf In-Reply-To: <20161102143840.vdfz7nnesggskcwo@webmail.eurecom.fr> References: <20161102103100.5nwnn1utk4wgc8ok@webmail.eurecom.fr> <20161102114113.m2p2klnhxc0wwgk8@webmail.eurecom.fr> <20161102143840.vdfz7nnesggskcwo@webmail.eurecom.fr> Message-ID: You are missing a reference to the boost library. If my memory is not wrong, it should be -lboost_system -lboost 2016-11-02 14:38 GMT+01:00 Matteo Bertolino : > Sure: > ~/Desktop/mini3/due/ndn-cxx/examples$ g++ -o out matproducer.cpp > -std=c++11 -lndn-cxx -lpthread -I/usr/local/include/ndn-cxx/ > -I/home/bertolino/Desktop/mini3/due/ndn-cxx/src/ > /usr/bin/ld: /tmp/ccdg7qOe.o: undefined reference to symbol > '_ZN5boost6system15system_categoryEv' > //usr/lib/x86_64-linux-gnu/libboost_system.so.1.54.0: error adding > symbols: DSO missing from command line > collect2: error: ld returned 1 exit status > Any ideas? > > Thanks, Matteo > > > Quoting "C?sar A. Bernardini" : > > Mateo, could you share the compilation error or the G++ output. >> >> 2016-11-02 11:41 GMT+01:00 Matteo Bertolino > >: >> >> I followed your suggestion including all path until the end of compilation >>> error. Unfortunately, , when I try to execute the file, I obtain " >>> executable format error". >>> >>> I absolutely need a way to compile ndn-cxx file without waf. Does nobody >>> already tried to do it? >>> >>> Matteo >>> >>> >>> Quoting "C?sar A. Bernardini" : >>> >>> You have to include the path towards the library in the gcc command. >>> >>>> >>>> The error is highlighting that it can not find the face.hpp file. I am >>>> not >>>> sure, but I think is -I (capital i) and the path towards the file. >>>> >>>> 2016-11-02 10:31 GMT+01:00 Matteo Bertolino < >>>> Matteo.Bertolino at eurecom.fr >>>> >: >>>> >>>> Good morning, >>>> >>>>> I would like to compile an ndn-cxx program without use the waf command. >>>>> >>>>> I tried: g++ -o out matproducer.cpp -std=c++11 $(pkg-config --cflags >>>>> --libs >>>>> libndn-cxx) >>>>> >>>>> and >>>>> >>>>> g++ matproducer.cpp `pkg-config --cflags --libs libndn.cxx` >>>>> >>>>> But I obtain this error: >>>>> >>>>> matproducer.cpp:5:20: fatal error: face.hpp: No such file or directory >>>>> #include "face.hpp" >>>>> ^ >>>>> compilation terminated. >>>>> >>>>> Any suggestions? >>>>> Thank you very much, >>>>> Matteo >>>>> >>>>> ------------------------------------------------------------ >>>>> ------------------- >>>>> This message was sent using EURECOM Webmail: http://webmail.eurecom.fr >>>>> >>>>> _______________________________________________ >>>>> Ndn-interest mailing list >>>>> Ndn-interest at lists.cs.ucla.edu >>>>> http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-interest >>>>> >>>>> >>>>> >>>> >>> >>> ------------------------------------------------------------ >>> ------------------- >>> This message was sent using EURECOM Webmail: http://webmail.eurecom.fr >>> >>> >>> >> > > > ------------------------------------------------------------ > ------------------- > This message was sent using EURECOM Webmail: http://webmail.eurecom.fr > > -------------- next part -------------- An HTML attachment was scrubbed... URL: From Matteo.Bertolino at eurecom.fr Wed Nov 2 07:33:51 2016 From: Matteo.Bertolino at eurecom.fr (Matteo Bertolino) Date: Wed, 02 Nov 2016 15:33:51 +0100 Subject: [Ndn-interest] Compiling ndn-cxx program without waf In-Reply-To: References: <20161102103100.5nwnn1utk4wgc8ok@webmail.eurecom.fr> <20161102114113.m2p2klnhxc0wwgk8@webmail.eurecom.fr> <20161102143840.vdfz7nnesggskcwo@webmail.eurecom.fr> Message-ID: <20161102153351.lj68cxkco4ww88gc@webmail.eurecom.fr> Great! just -lboost_system , it works properly!! Have a nice day, matteo Quoting "C?sar A. Bernardini" : > You are missing a reference to the boost library. > > If my memory is not wrong, it should be -lboost_system -lboost > > 2016-11-02 14:38 GMT+01:00 Matteo Bertolino : > >> Sure: >> ~/Desktop/mini3/due/ndn-cxx/examples$ g++ -o out matproducer.cpp >> -std=c++11 -lndn-cxx -lpthread -I/usr/local/include/ndn-cxx/ >> -I/home/bertolino/Desktop/mini3/due/ndn-cxx/src/ >> /usr/bin/ld: /tmp/ccdg7qOe.o: undefined reference to symbol >> '_ZN5boost6system15system_categoryEv' >> //usr/lib/x86_64-linux-gnu/libboost_system.so.1.54.0: error adding >> symbols: DSO missing from command line >> collect2: error: ld returned 1 exit status >> Any ideas? >> >> Thanks, Matteo >> >> >> Quoting "C?sar A. Bernardini" : >> >> Mateo, could you share the compilation error or the G++ output. >>> >>> 2016-11-02 11:41 GMT+01:00 Matteo Bertolino >> >: >>> >>> I followed your suggestion including all path until the end of compilation >>>> error. Unfortunately, , when I try to execute the file, I obtain " >>>> executable format error". >>>> >>>> I absolutely need a way to compile ndn-cxx file without waf. Does nobody >>>> already tried to do it? >>>> >>>> Matteo >>>> >>>> >>>> Quoting "C?sar A. Bernardini" : >>>> >>>> You have to include the path towards the library in the gcc command. >>>> >>>>> >>>>> The error is highlighting that it can not find the face.hpp file. I am >>>>> not >>>>> sure, but I think is -I (capital i) and the path towards the file. >>>>> >>>>> 2016-11-02 10:31 GMT+01:00 Matteo Bertolino < >>>>> Matteo.Bertolino at eurecom.fr >>>>> >: >>>>> >>>>> Good morning, >>>>> >>>>>> I would like to compile an ndn-cxx program without use the waf command. >>>>>> >>>>>> I tried: g++ -o out matproducer.cpp -std=c++11 $(pkg-config --cflags >>>>>> --libs >>>>>> libndn-cxx) >>>>>> >>>>>> and >>>>>> >>>>>> g++ matproducer.cpp `pkg-config --cflags --libs libndn.cxx` >>>>>> >>>>>> But I obtain this error: >>>>>> >>>>>> matproducer.cpp:5:20: fatal error: face.hpp: No such file or directory >>>>>> #include "face.hpp" >>>>>> ^ >>>>>> compilation terminated. >>>>>> >>>>>> Any suggestions? >>>>>> Thank you very much, >>>>>> Matteo >>>>>> >>>>>> ------------------------------------------------------------ >>>>>> ------------------- >>>>>> This message was sent using EURECOM Webmail: http://webmail.eurecom.fr >>>>>> >>>>>> _______________________________________________ >>>>>> Ndn-interest mailing list >>>>>> Ndn-interest at lists.cs.ucla.edu >>>>>> http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-interest >>>>>> >>>>>> >>>>>> >>>>> >>>> >>>> ------------------------------------------------------------ >>>> ------------------- >>>> This message was sent using EURECOM Webmail: http://webmail.eurecom.fr >>>> >>>> >>>> >>> >> >> >> ------------------------------------------------------------ >> ------------------- >> This message was sent using EURECOM Webmail: http://webmail.eurecom.fr >> >> > ------------------------------------------------------------------------------- This message was sent using EURECOM Webmail: http://webmail.eurecom.fr From jefft0 at remap.UCLA.edu Wed Nov 2 13:04:26 2016 From: jefft0 at remap.UCLA.edu (Thompson, Jeff) Date: Wed, 2 Nov 2016 20:04:26 +0000 Subject: [Ndn-interest] NDN Platform version 0.5.0 In-Reply-To: References: Message-ID: Hello all, The NDN Platform version 0.5.0 is released. This includes updated NFD and ndn-cxx version 0.5.0, the latest Common Client Library releases as mentioned on the ndn-lib email list, and updates to NLSR and Mini-NDN. For details and links to the packages, please see: https://named-data.net/codebase/platform/#Version_050 Thank you, - Jeff T -------------- next part -------------- An HTML attachment was scrubbed... URL: From aa at CS.UCLA.EDU Fri Nov 11 09:54:36 2016 From: aa at CS.UCLA.EDU (Alex Afanasyev) Date: Fri, 11 Nov 2016 09:54:36 -0800 Subject: [Ndn-interest] [NDN-TR] NDN-0028 revision 2: ndnSIM 2: An updated NDN simulator for NS-3 Message-ID: <3C9B2D56-E9B3-494E-9355-05A1527614DE@cs.ucla.edu> A new revision of NDN Technical report is now available on NDN website. Comments and suggestions are highly welcome. Title : ndnSIM 2: An updated NDN simulator for NS-3 Authors : Spyridon Mastorakis, Alexander Afanasyev, Ilya Moiseenko, and Lixia Zhang Number : NDN-0028 Revision : 2 Revision Date : November 11, 2016 Abstract: The fundamental departure of the Named-Data Networking (NDN) communication paradigm from the IP principles requires exten- sive evaluation through experimentation, and simulation is a necessary tool to enable the experimentation at scale. We released the first ver- sion of ndnSIM, an open source NS-3-based NDN simulator, back in June 2012. Since then, ndnSIM has undergone substantial development resulting in ndnSIM 2, the first version of which was released in Jan- uary 2015. This paper reports the design and features of the updated simulator. The goal of the updated simulator is to match the simulation platform to the latest advancements of NDN research. Therefore, it uses the ndn-cxx library (NDN C++ library with eXperimental eXtensions) and the NDN Forwarding Daemon (NFD) to enable experiments with real code in a simulation environment. Information page for this TR: https://named-data.net/publications/techreports/ndn-0028-2-ndnsim-v2/ Direct link to PDF: https://named-data.net/wp-content/uploads/2016/11/ndn-0028-2-ndnsim-v2.pdf Other NDN Technical Reports: http://named-data.net/publications/techreports/ From s.h.ahmed at ieee.org Fri Nov 25 17:30:47 2016 From: s.h.ahmed at ieee.org (Syed Hassan Ahmed) Date: Sat, 26 Nov 2016 10:30:47 +0900 Subject: [Ndn-interest] NDN related Events and Special Issues Message-ID: Dear Colleagues and Friends, Seasonal Greetings! Through this email, I am sharing the opportunities of publishing your recent findings regarding the Future Internet architectures. Please note that all the following events and special issues welcome NDN research: 1. 2nd RAFNET Workshop in conjunction with IEEE VTC Spring 2017, Sydney, Australia. URL: http://rafnetworkshop.wixsite.com/2017 Submission Due: January 15, 2017 2. IEEE INFOCOM; SCAN Workshop 2017, Atlanta, USA. URL: http://infocom2017.ieee-infocom.org/workshop/scan-advances-software-defined-and-context%E2%80%90aware-cognitive-networks Submission Due: January 10, 2017 3. IWCMC 2017, Vehicular Communications Symposium ?, Valencia, Spain.? ?URL: http://iwcmc.org/2017/symposia/ Submission Due: ?January 10, 2017 4. IEEE Access Journal Special Section on Future Networks. URL: http://ieeeaccess.ieee.org/special-sections/future-networks-architectures-protocols-applications/ Submission Due: January 31, 2017 5. WCMC Journal, SI on Wireless Networking Technologies for Smart Cities URL: https://www.hindawi.com/journals/wcmc/si/972967/cfp/? ?Submission Due: March 31, 2017 6. Elsevier FGCS Journal: Special Issue on Future Networking Research Plethora for Smart Cities URL: http://www.journals.elsevier.com/future-generation-computer-systems/call-for-papers/special-issue-on-future-networking-research-plethora-for-sma Submission Due:? June 01, 2017 7. IEEE Internet Initiative e-News Letter URL: http://internetinitiative.ieee.org/newsletter Submission Type: 800-1200 words related to the subject. How Future Internet can help in making policies !! For details, check the URL. ?Looking forward for interesting contributions and in case of any query, feel free to contact me. ? *Syed Hassan Ahmed* PhD Scholar, Kyungpook National University [image: photo] Mobile: +82-10-9883-0786 Skype: hassan.shah2728 <#> Website: https://sites.google.com/site/shahmedknu/ Member: IEEE ComSoc, IEEE Young Professionals, ACM Get a signature like this: Click here! -------------- next part -------------- An HTML attachment was scrubbed... URL: From NourElHouda.BenYoussef at wevioo.com Wed Nov 30 22:49:54 2016 From: NourElHouda.BenYoussef at wevioo.com (Nour El Houda Ben Youssef) Date: Thu, 1 Dec 2016 06:49:54 +0000 Subject: [Ndn-interest] Collision detection Message-ID: <712FE4E7257849499414892DD92704BC7A9E33BF@INFRAEX02.oxia.corp> Dear ndn users I would like to ask about collision detection in NDN In case of using NDN as an overlay network, the mac layer will do the job but for a pure ndn solution? Best regards [logoslogan.png] Nour El Houda BEN YOUSSEF KOUB?A|Doctorante Technopark El Ghazela 2088 Tunis- Tunisia Phone: +216 31 34 00 14 Mobile: +216 40 01 73 56 www.wevioo.com Paris - Tunis - Dubai - Alger -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: image001.png Type: image/png Size: 4997 bytes Desc: image001.png URL: From christos at colostate.edu Wed Nov 30 22:58:20 2016 From: christos at colostate.edu (Christos Papadopoulos) Date: Wed, 30 Nov 2016 23:58:20 -0700 Subject: [Ndn-interest] Collision detection In-Reply-To: <712FE4E7257849499414892DD92704BC7A9E33BF@INFRAEX02.oxia.corp> References: <712FE4E7257849499414892DD92704BC7A9E33BF@INFRAEX02.oxia.corp> Message-ID: The MAC layer is typically outside the scope of NDN, which operates at higher layers. But let me ask, why are you looking for an NDN solution at that layer? Christos. On 11/30/2016 11:49 PM, Nour El Houda Ben Youssef wrote: > > Dear ndn users > > I would like to ask about collision detection in NDN > > In case of using NDN as an overlay network, the mac layer will do the > job but for a pure ndn solution? > > Best regards > > *logoslogan.png* > > > > *Nour El Houda BEN YOUSSEF KOUB?A*|Doctorante > > Technopark El Ghazela 2088 Tunis- Tunisia > > Phone: +216 31 34 00 14 > > Mobile: +216 40 01 73 56 > > www.wevioo.com > > Paris ? Tunis - Dubai ? Alger > > > > > > _______________________________________________ > Ndn-interest mailing list > Ndn-interest at lists.cs.ucla.edu > http://www.lists.cs.ucla.edu/mailman/listinfo/ndn-interest -------------- next part -------------- An HTML attachment was scrubbed... URL: -------------- next part -------------- A non-text attachment was scrubbed... Name: not available Type: image/png Size: 4997 bytes Desc: not available URL: