NDNLPv2 is a link protocol for Named Data Networking.
NDNLPv2 provides the following features:
- fragmentation and reassembly: fragment a network layer packet to fit in link MTU
- failure detection: rapidly detect link failure and recovery
#!/bin/bash | |
TPMDIR=/tmp/ndntestbed-certexpiry_$(date +%s) | |
NOW=$(date -u +%s) | |
mkdir -p $TPMDIR | |
export HOME=$TPMDIR | |
pushd $TPMDIR >/dev/null | |
curl -s http://ndncert.named-data.net/cert/list/ > certs.txt |
// Face design | |
// This design incorporates: | |
// Link Services http://redmine.named-data.net/issues/2222 | |
// Permanent Face http://redmine.named-data.net/issues/2491 | |
// -------- Face, Transport, LinkService -------- | |
namespace nfd { | |
namespace face { |
// # NDNLPv2 API: NACK in client Face | |
// ## extending ndn::Face class | |
namespace ndn { | |
typedef function<void(const Interest&, const Data&)> DataCallback; | |
typedef function<void(const Interest&, const lp::Nack&)> NackCallback; | |
typedef function<void(const Interest&)> TimeoutCallback; |
// # NDNLPv2 packet format API | |
// ## TLV-TYPE assignments | |
namespace ndn { | |
namespace lp { | |
namespace tlv { | |
enum { | |
LpPacket = 100, |
namespace ndn { | |
namespace mgmt { | |
// ---- AUTHORIZATION ---- | |
/** \brief a function to be called if authorization is successful | |
* \param requester a string that indicates the requester, whose semantics is determined by | |
* the Authorization function; this value is intended for logging only, | |
* and should not affect how the request is processed | |
*/ |
NDNLPv2 is a link protocol for Named Data Networking.
NDNLPv2 provides the following features:
Wireshark is an open-source packet analyzer. It is widely used for network troubleshooting, software and communication protocol development, etc.
Wireshark understands the structure of different networking protocols.
It can parse and display the fields, along with their meanings as specified by different networking protocols.
The parser of each protocol is called a dissector.
Wireshark is equipped with thousands of dissectors on different levels, including Ethernet, IPv4, UDP, SNMP, HTTP, and many more.
One can either write a dissector in C programming language and compile it into Wireshark binary, or write a dissector in Lua scripting language and load it when Wireshark starts.
#!/usr/bin/python2 | |
# https://www.facebook.com/permalink.php?story_fbid=921147667906858&id=531306850224277 | |
# My confession is that technically I have probably kissed 1/20th of the Student body here are U of A. It's truly embarrassing to say but I'm glad to get that off my chest. -EOS | |
# Number of students at U of A = 50,000; You claim to kiss: 1/20 x 50,000 = 2,500; Math, Bitch!! | |
# This script computes number of kisses necessary to kiss 2500 unique students, or the entire student body. | |
import random |
#!/bin/bash | |
# https://gist.github.com/yoursunny/6297f3c70f5441213184 | |
LICENSE_NFD='''/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ | |
/* | |
* Copyright (c) 2014-2019, Regents of the University of California, | |
* Arizona Board of Regents, | |
* Colorado State University, | |
* University Pierre & Marie Curie, Sorbonne University, | |
* Washington University in St. Louis, |
spreadsheet2sjtubbs script | |
This script updates the contents of a worksheet in Google Spreadsheet into a post at SJTUBBS. | |
Setup instructions: | |
1. Download a copy of config.inc.php and spreadsheet2sjtubbs.cli.php | |
2. Open the Spreadsheet, click [File - Publish to the Web] menu item, | |
click [Start Publishing] | |
3. In [Get a link to the published data], |