commit | 76fc4fa67f0ae4284b03a6bb557456627dc8fa51 | [log] [tgz] |
---|---|---|
author | Sonu Mishra <skmishra@cs.ucla.edu> | Sun Jan 22 18:47:33 2017 -0800 |
committer | Gerrit Code Review <gerrit@named-data.net> | Mon Mar 06 18:16:10 2017 -0800 |
tree | 30022b00bdf9d14a474120a6d0cf2cb8c72baa96 | |
parent | d6d602e4cb1be72740af5e60bba2f4a436fa9c2c [diff] |
Update git submodules * Update ChronoSync from branch 'master' - logic: Implemented exclude filter This commit implements the exclude filter mechanism that is required to handle simultaneous data generations. When a node receives data, it resends the corresponding sync interest with augmented exclude filter. Change-Id: I6500abf29877e51bb2a91eca83f9c0eba0e59655 Refs: #3928
ChronoChat is a multiparty chat application that demostrates our synchronization primitive that we call ChronoSync.
Note that after you click to close ChronoChat, it will keep running on your system tray. To restore it to normal size window, you have to click on the system tray icon (normally on the upper right corner of your screen). Clicking on the dock won't work for now and is still on the to-do list (because I'm using qt for gui, not the native Cocoa framework).
Install MacPorts, if not yet installed (http://www.macports.org/), configure NDN ports repository and install NFD if you don't have it yet.
sudo port install nfd sudo nfd-start
Install ChronoChat dependencies
sudo port install pkgconfig protobuf-cpp boost qt4-mac
Fetch source code with submodules
git clone --recursive git://github.com/named-data/ChronoChat
If you already cloned repository, you can update submodules this way:
git submodule update --init
Configure and install ChronoSync
cd ChronoChat/ChronoSync ./waf configure ./waf sudo ./waf install
Configure and build ChronoChat
cd .. PKG_CONFIG_PATH=/opt/local/lib/pkgconfig:/usr/local/lib/pkgconfig:/usr/lib/pkgconfig ./waf configure ./waf
Congratulations! build/ChronoChat.app is ready to use (on a Mac).
Configure NDN PPA repository and install NFD if you don't have it yet.
sudo apt-get install nfd
Install ChronoChat dependencies
sudo apt-get install libprotobuf-dev protobuf-compiler libevent-dev sudo apt-get install libboost1.48-all-dev sudo apt-get install qt4-dev-tools
Fetch source code with submodules
git clone --recursive git://github.com/named-data/ChronoChat
If you already cloned repository, you can update submodules this way:
git submodule update --init
Configure and install ChronoSync
cd ChronoChat/ChronoSync ./waf configure ./waf sudo ./waf install sudo ldconfig
Configure and build ChronoChat
cd .. ./waf configure ./waf
Congratulations! build/ChronoChat is ready to use. Do not forget to start ccnd and configure FIB before using ChronoChat.