Skip to content

Instantly share code, notes, and snippets.

View yoursunny's full-sized avatar
📟

Junxiao Shi yoursunny

📟
View GitHub Profile
@yoursunny
yoursunny / Wireshark-NDN-spec.md
Last active August 29, 2015 14:18
Wireshark dissector for NDN packet format

Wireshark dissector for NDN packet format

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.

@yoursunny
yoursunny / NDNLPv2.md
Last active August 15, 2017 15:27
NDNLPv2

NDNLPv2

NDNLPv2 is a link protocol for Named Data Networking.

Goals

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
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 packet format API
// ## TLV-TYPE assignments
namespace ndn {
namespace lp {
namespace tlv {
enum {
LpPacket = 100,
// # 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;
// 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 {
@yoursunny
yoursunny / ndntestbed-certexpiry.sh
Created March 6, 2016 16:42
NDN testbed certificate expiry check
#!/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
@yoursunny
yoursunny / gprof-inclusivetimetree-html.php
Created April 5, 2016 00:05
prettyprint gprof inclusive time tree
<?php
$f = fopen('php://stdin', 'r');
echo <<<EOT
<style>
ul { margin-left:0; padding-left:1em; border-left:solid 2px #999; }
li { list-style:none; padding-bottom:1ex; }
b { cursor:pointer; }
b:before { content:'- '; }
li.leaf > b:before { content:''; }
// ESP8266 register voucher code on Clearwave Solution WiFi <http://www.getclearwave.com/> Tucson AZ
#include <ESP8266WiFi.h>
#include <ESP8266HTTPClient.h>
#include <Streaming.h>
const char* WIFI_SSID = "community-ssid";
const char* WIFI_PASS = "community-password";
const char* VOUCHER = "xxxxxxxx";
@yoursunny
yoursunny / twttr-to-ifttt.flow.json
Last active July 10, 2016 01:35
Repost Twitter to Facebook with Losant and IFTTT https://yoursunny.com/t/2016/twitter-ifttt/
{
"globals": [
{
"key": "oauth_consumer_key",
"type": "string"
},
{
"key": "oauth_consumer_secret",
"type": "string"
},