code
stringlengths
10
1.34M
language
stringclasses
1 value
// Copyright 2014 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // See http://standards.ieee.org/findstds/standard/802.11-2012.html for info on // all of the layers in this file. package la...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package macs // Created by gen.go, don't edit manually // Generated at 2014-09-09 10:01:58.097553511 -0600 MDT // Fetched fro...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // +build ignore // This binary pulls the list of known MAC // prefixes from IEEE and writes them out to a go file which is c...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Package macs provides an in-memory mapping of all valid Ethernet MAC address // prefixes to their associated organization. ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package routing import ( "net" ) // Router implements simple IPv4/IPv6 routing based on the kernel's routing // table. Thi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // +build linux // Package routing provides a very basic but mostly functional implementation of // a routing table for IPv4/...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // +build !linux // Package routing is currently only supported in Linux, but the build system requires a valid go file for a...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket import () // SerializableLayer allows its implementations to be written out as a set of bytes, // so those ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package pfring /* #cgo LDFLAGS: -lpfring -lpcap #include <stdl...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. /* Package pfring wraps the PF_RING C library for Go. PF_RING is a high-performance packet capture library written by ntop.or...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // arpscan implements ARP scanning of all interfaces' local networks using // gopacket and its subpackages. This example show...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // The pfdump binary implements a tcpdump-like command line tool with gopacket // using pfring as a backend data collection me...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // synscan implements a TCP syn scanner on top of pcap. // It's more complicated than arpscan, since it has to handle sending ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Package util provides shared utilities for all gopacket examples. package util import ( "flag" "log" "os" "runtime/ppr...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // This binary provides sample code for using the gopacket TCP assembler raw, // without the help of the tcpreader library. I...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // This binary provides an example of connecting up bidirectional streams from // the unidirectional streams provided by gopac...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // The pcapdump binary implements a tcpdump-like command line tool with gopacket // using pcap as a backend data collection me...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // This binary provides sample code for using the gopacket TCP assembler and TCP // stream reader. It reads packets off the w...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // This binary shows how to display byte differences to users via the bytediff // library. package main import ( "code.googl...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket // LayerClass is a set of LayerTypes, used for grabbing one of a number of // different types from a packet....
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Package tcpreader provides an implementation for tcpassembly.Stream which presents // the caller with an io.Reader for easy...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Package tcpassembly provides TCP stream re-assembly. // // The tcpassembly package implements uni-directional TCP reassembl...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket import ( "bytes" "fmt" "strconv" ) // MaxEndpointSize determines the maximum size in bytes of an endpoin...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Package dumpcommand implements a run function for pfdump and pcapdump // with many similar flags/features to tcpdump. This...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // +build ignore // This binary tests that PCAP packet capture is working correctly by issuing // HTTP requests, then making ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // This benchmark reads in file <tempdir>/gopacket_benchmark.pcap and measures // the time it takes to decode all packets from...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package pcap /* #cgo linux LDFLAGS: -lpcap #cgo freebsd LDFLAG...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. /* Package pcap allows users of gopacket to read packets off the wire or from pcap files. This package is meant to be used wi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket import ( "fmt" "strconv" ) // LayerType is a unique identifier for each type of layer. This enumeration ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket import ( "errors" ) // DecodeFeedback is used by DecodingLayer layers to provide decoding metadata. type D...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket import ( "bytes" "encoding/hex" "errors" "fmt" "io" "os" "reflect" "runtime/debug" "time" ) // Cap...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket import ( "fmt" ) // DecodingLayer is an interface for packet layers that can decode themselves. // // The ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. /* Package gopacket provides packet decoding for the Go language. gopacket contains many sub-packages with additional functio...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Package bytediff provides a simple diff utility for looking at differences in byte // slices. It's slow, clunky, and not p...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket import ( "fmt" ) // Layer represents a single decoded packet layer (using either the // OSI or TCP/IP defi...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package sqlite3 /* // SQLite compilation options. // [http://www.sqlite.org/compile.html] // [http://www.sqlite.org/footprint.html] #cgo CFLAGS: -std=gn...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package sqlite3 import "C" import ( "database/sql" "database/sql/driver" "io" "reflect" "time" "unsafe" ) // Driver implements the interface req...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package sqlite3 /* #include "sqlite3.h" */ import "C" import ( "bytes" "fmt" "reflect" "unsafe" ) // NamedArgs is a name/value map of arguments pa...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package sqlite3 /* #include "sqlite3.h" */ import "C" import ( "io" "runtime" ) // ErrBlobFull is returned by BlobIO.Write when there isn't enough s...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package codec import ( "bytes" "crypto/hmac" "crypto/rand" "hash" "io" "strings" . "code.google.com/p/go-sqlite/go1/sqlite3" ) func init() { R...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package codec import ( "encoding/hex" "fmt" "os" "strconv" . "code.google.com/p/go-sqlite/go1/sqlite3" ) type hexDump struct { key []byte out...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package codec import ( "crypto/aes" "crypto/cipher" "crypto/hmac" "crypto/sha1" "crypto/sha256" "hash" . "code.google.com/p/go-sqlite/go1/sqlite...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /* Package codec provides authenticated encryption and other codecs for the sqlite3 package. This package has no public interface and should be imported...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package sqlite3 /* #include "sqlite3.h" */ import "C" import ( "io" "runtime" ) // Backup is a handle to an online backup operation between two data...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package sqlite3 /* #include "sqlite3.h" #include "lib/codec.h" */ import "C" import ( "bytes" "sync" "unsafe" ) // CodecFunc is a codec initializat...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. package sqlite3 /* #include "sqlite3.h" */ import "C" // Fundamental SQLite data types. These are returned by Stmt.DataTypes method. // [http://www.sql...
Go
// Copyright 2013 The Go-SQLite Authors. All rights reserved. // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. /* Package sqlite3 provides an interface to SQLite version 3 databases. Database connections are created either by using this package directly or with t...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket import ( "fmt" "strconv" ) // LayerType is a unique identifier for each type of layer. This enumeration ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "fmt" "strconv" "code.google.com/p/gopacket" ) // TCPPort is a port in a TCP layer. type TCPPort...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" "fmt" ) // Loopback contains the header for loopba...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "errors...
Go
// Copyright 2014 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "bytes" "code.google.com/p/gopacket" "encoding/binary" "fmt" ) // align calculates the number of...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" "fmt" ) // EthernetCTPFunction is the function cod...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" ) // PPPoE is the layer for PPPoE encapsulation hea...
Go
// Copyright 2014 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" "errors" "fmt" "net" ) type DNSClass uint16 con...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" "fmt" ) // LLDPTLVType is the type of each TLV val...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "net" ) // FDDI contains the header for FDDI frames. type FDDI struct...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" ) // GRE is a Generic Routing Encapsulation header....
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" ) // EAPOL defines an EAP over LAN (802.1x) layer. type EAPOL struct {...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "encoding/binary" "errors" "fmt" "net" "code.google.com/p/gopacket" ) type LinuxSLLPacketType ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Enum types courtesy of... // http://anonsvn.wireshark.org/wireshark/trunk/epan/dissectors/packet-ndp.c package layers imp...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" ) // EtherIP is the struct for storing RFC 3378 Eth...
Go
// Copyright 2014 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" ) type USBEventType uint8 const ( USBEventTypeSub...
Go
// Copyright 2012 Google, gopacket.LayerTypeMetadata{Inc. All rights reserved}. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" ) var ( LayerTypeARP ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "encoding/binary" "errors" "code.google.com/p/gopacket" ) type PFDirection uint8 const ( PFDir...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" ) // IPSecAH is the authentication header for IPv4/...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" "net" "strconv" ) var ( // We use two different ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" ) // BaseLayer is a convenience struct which implements the LayerData ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // +build ignore // This binary pulls known ports from IANA, and uses them to populate // iana_ports.go's TCPPortNames and UD...
Go
// Copyright 2014 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // See http://standards.ieee.org/findstds/standard/802.11-2012.html for info on // all of the layers in this file. package la...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" ) // LLC is the layer used for 802.2 Logical Link C...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "fmt" )...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Enum types courtesy of... // http://search.cpan.org/~mchapman/Net-CDP-0.09/lib/Net/CDP.pm // https://code.google.com/p/...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. package layers // Created by gen.go, don't edit manually // Generated at 2014-09-09 10:09:28.309114133 -0600 MDT // Fetched from "http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml" // TCPPortNames contains the port names for ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" "errors" ) // PPP is the layer for PPP encapsulati...
Go
// Copyright 2014 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. /* This layer decodes SFlow version 5 datagrams. The specification can be found here: http://sflow.org/sflow_version_5.txt A...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" "fmt" "hash/crc32" ) // SCTP contains information...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" "errors" ) // MPLS is the MPLS packet header. type...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" "fmt" ) type RUDP struct { BaseLayer SYN, ACK, E...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. /* Package layers provides decoding layers for many common protocols. The layers package contains decode implementations for ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encoding/binary" "fmt" ) type EAPCode uint8 type EAPType uint8 con...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // Copyright 2009-2011 Andreas Krennmair. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package layers import ( "code.google.com/p/gopacket" "encodi...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket import () // SerializableLayer allows its implementations to be written out as a set of bytes, // so those ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package gopacket import ( "fmt" ) // DecodingLayer is an interface for packet layers that can decode themselves. // // The ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // +build ignore // This binary pulls the list of known MAC // prefixes from IEEE and writes them out to a go file which is c...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. package macs // Created by gen.go, don't edit manually // Generated at 2014-09-09 10:01:58.097553511 -0600 MDT // Fetched fro...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Package macs provides an in-memory mapping of all valid Ethernet MAC address // prefixes to their associated organization. ...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Package tcpassembly provides TCP stream re-assembly. // // The tcpassembly package implements uni-directional TCP reassembl...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Package tcpreader provides an implementation for tcpassembly.Stream which presents // the caller with an io.Reader for easy...
Go
// Copyright 2012 Google, Inc. All rights reserved. // // Use of this source code is governed by a BSD-style license // that can be found in the LICENSE file in the root of the source // tree. // Package pcapgo provides some native PCAP support, not requiring // C libpcap to be installed. package pcapgo import ( "en...
Go