summaryrefslogtreecommitdiff
path: root/network
diff options
context:
space:
mode:
authorWei Mao <[email protected]>2017-08-29 10:35:21 -0700
committerGitHub <[email protected]>2017-08-29 10:35:21 -0700
commitd480fa7f2587e2f4170e67d3aa075b3cf4c08552 (patch)
treef9029983264e1957eb9817c139203b2e1e61b6fb /network
parent5afc248a8d0e15e5f198f3404a23d696103fcfa2 (diff)
parent53bcc426c1870374bf941424ddf8b85b745079fd (diff)
Merge pull request #166 from barrygolden/master
Added metadata to README.md files
Diffstat (limited to 'network')
-rw-r--r--network/config/bindview/README.md10
-rw-r--r--network/modem/fakemodem/README.md9
-rw-r--r--network/ndis/extension/README.md10
-rw-r--r--network/ndis/filter/README.md10
-rw-r--r--network/ndis/mux/README.md10
-rw-r--r--network/ndis/ndisprot/6x/README.md16
-rw-r--r--network/ndis/ndisprot_kmdf/README.md17
-rw-r--r--network/ndis/netvmini/6x/README.md10
-rw-r--r--network/radio/HidSwitchDriverSample/README.md10
-rw-r--r--network/radio/RadioManagerSample/README.md10
-rw-r--r--network/trans/WFPSampler/README.md10
-rw-r--r--network/trans/ddproxy/README.md10
-rw-r--r--network/trans/inspect/README.md10
-rw-r--r--network/trans/msnmntr/README.md10
-rw-r--r--network/trans/stmedit/README.md10
-rw-r--r--network/wsk/echosrv/README.md10
16 files changed, 166 insertions, 6 deletions
diff --git a/network/config/bindview/README.md b/network/config/bindview/README.md
index 01e1cd8d..b239b700 100644
--- a/network/config/bindview/README.md
+++ b/network/config/bindview/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: Bindview Network Configuration Utility
+ platform: Application
+ language: cpp
+ category: Network
+ description: An application that demonstrates how to use INetCfg APIs to enumerate, install, uninstall, bind and unbind network components.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617732
+--->
+
+
Bindview Network Configuration Utility
======================================
diff --git a/network/modem/fakemodem/README.md b/network/modem/fakemodem/README.md
index b79071cb..3734a95a 100644
--- a/network/modem/fakemodem/README.md
+++ b/network/modem/fakemodem/README.md
@@ -1,3 +1,12 @@
+<!---
+ name: Fakemodem Driver
+ platform: KMDF
+ language: cpp
+ category: Network
+ description: Demonstrates a simple controller-less modem driver.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617733
+--->
+
Fakemodem Driver
================
diff --git a/network/ndis/extension/README.md b/network/ndis/extension/README.md
index dc3b6b92..df154559 100644
--- a/network/ndis/extension/README.md
+++ b/network/ndis/extension/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: Hyper-V Extensible Switch extension filter driver
+ platform: WDM
+ language: cpp
+ category: Network
+ description: A base library used to implement a Hyper-V Extensible Switch extension filter driver.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617913
+--->
+
+
Hyper-V Extensible Switch extension filter driver
=================================================
diff --git a/network/ndis/filter/README.md b/network/ndis/filter/README.md
index ac1bc67c..274287bc 100644
--- a/network/ndis/filter/README.md
+++ b/network/ndis/filter/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: NDIS 6.0 Filter Driver
+ platform: WDM
+ language: cpp
+ category: Network
+ description: A pass-through NDIS 6 filter driver demonstrating the basic principles of an NDIS 6.0 Filter driver.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617915
+--->
+
+
NDIS 6.0 Filter Driver
======================
diff --git a/network/ndis/mux/README.md b/network/ndis/mux/README.md
index 0a545a3a..cf9a112c 100644
--- a/network/ndis/mux/README.md
+++ b/network/ndis/mux/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: NDIS MUX Intermediate Driver and Notify Object
+ platform: WDM
+ language: cpp
+ category: Network
+ description: An NDIS 6.0 driver that demonstrates the operation of an N:1 MUX driver.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617916
+--->
+
+
NDIS MUX Intermediate Driver and Notify Object
==============================================
diff --git a/network/ndis/ndisprot/6x/README.md b/network/ndis/ndisprot/6x/README.md
index 55843a0c..211a8721 100644
--- a/network/ndis/ndisprot/6x/README.md
+++ b/network/ndis/ndisprot/6x/README.md
@@ -1,7 +1,17 @@
-NDIS Connection-less Protocol Driver Sample
-===========================================
+<!---
+ name: NDIS Connection-less Protocol WDM Driver Sample
+ platform: WDM
+ language: cpp
+ category: Network
+ description: Demonstrates a connection-less NDIS 6.0 protocol WDM driver.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617917
+--->
-This sample demonstrates a connection-less NDIS 6.0 protocol.The driver supports sending and receiving raw Ethernet frames using `ReadFile`/`WriteFile` calls from user-mode. It only receives frames with a specific EtherType field. As an NDIS protocol, it illustrates how to establish and tear down bindings to Ethernet adapters, i.e. those that export medium type **NdisMedium802\_3**. It shows how to set a packet filter, send and receive data, and handle plug-and-play events.
+
+NDIS Connection-less Protocol WDM Driver Sample
+===============================================
+
+This sample demonstrates a connection-less NDIS 6.0 protocol WDM driver. The driver supports sending and receiving raw Ethernet frames using `ReadFile`/`WriteFile` calls from user-mode. It only receives frames with a specific EtherType field. As an NDIS protocol, it illustrates how to establish and tear down bindings to Ethernet adapters, i.e. those that export medium type **NdisMedium802\_3**. It shows how to set a packet filter, send and receive data, and handle plug-and-play events.
### INSTALLATION
diff --git a/network/ndis/ndisprot_kmdf/README.md b/network/ndis/ndisprot_kmdf/README.md
index 0da2ae31..0f2ceb23 100644
--- a/network/ndis/ndisprot_kmdf/README.md
+++ b/network/ndis/ndisprot_kmdf/README.md
@@ -1,6 +1,17 @@
-Connection-less NDIS 6.0 Sample Protocol Driver
-===============================================
-This sample demonstrates a connection-less NDIS 6.0 protocol driver.
+<!---
+ name: Connection-less NDIS 6.0 Protocol KMDF Sample Driver
+ platform: KMDF
+ language: cpp
+ category: Network
+ description: Demonstrates a connection-less NDIS 6.0 protocol KMDF driver.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=620197
+--->
+
+
+Connection-less NDIS 6.0 Protocol KMDF Sample Driver
+====================================================
+
+This sample demonstrates a connection-less NDIS 6.0 protocol KMDF driver.
The driver supports sending and receiving raw Ethernet frames using ReadFile/WriteFile calls from user-mode. As an NDIS protocol, it illustrates how to establish and tear down bindings to Ethernet adapters, i.e. those that export medium type *NdisMedium802\_3*. It shows how to set a packet filter, send and receive data, and handle plug-and-play events.
diff --git a/network/ndis/netvmini/6x/README.md b/network/ndis/netvmini/6x/README.md
index 76020b5d..023e1674 100644
--- a/network/ndis/netvmini/6x/README.md
+++ b/network/ndis/netvmini/6x/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: NDIS Virtual Miniport Driver
+ platform: WDM
+ language: cpp
+ category: Network
+ description: Demonstrates the functionality of an NDIS miniport driver without requiring a physical network adapter.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617918
+--->
+
+
NDIS Virtual Miniport Driver
============================
diff --git a/network/radio/HidSwitchDriverSample/README.md b/network/radio/HidSwitchDriverSample/README.md
index 5f4fdd81..9726babf 100644
--- a/network/radio/HidSwitchDriverSample/README.md
+++ b/network/radio/HidSwitchDriverSample/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: Radio Switch Test Driver for OSR USB-FX2 Development Board
+ platform: KMDF
+ language: cpp
+ category: Network Radio
+ description: Demonstrates how to structure a HID driver for radio switches for the OSR USB-FX2 Development Board.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617919
+--->
+
+
Radio Switch Test Driver for OSR USB-FX2 Development Board
==========================================================
diff --git a/network/radio/RadioManagerSample/README.md b/network/radio/RadioManagerSample/README.md
index e391e051..3cac53e9 100644
--- a/network/radio/RadioManagerSample/README.md
+++ b/network/radio/RadioManagerSample/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: Windows Radio Management Sample
+ platform: WDM
+ language: cpp
+ category: Network Radio
+ description: Demonstrates how to structure a Radio Manager for use with the Windows Radio Management APIs.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617920
+--->
+
+
Windows Radio Management Sample
===============================
diff --git a/network/trans/WFPSampler/README.md b/network/trans/WFPSampler/README.md
index d23c2554..84621bcd 100644
--- a/network/trans/WFPSampler/README.md
+++ b/network/trans/WFPSampler/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: Windows Filtering Platform Sample
+ platform: KMDF
+ language: cpp
+ category: Network
+ description: A sample firewall that has a command-line interface which allows adding filters at various WFP layers.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=620198
+--->
+
+
Windows Filtering Platform Sample
=================================
diff --git a/network/trans/ddproxy/README.md b/network/trans/ddproxy/README.md
index a9e1d427..45a122d9 100644
--- a/network/trans/ddproxy/README.md
+++ b/network/trans/ddproxy/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: Windows Filtering Platform Packet Modification Sample
+ platform: KMDF
+ language: cpp
+ category: Network
+ description: Demonstrates the packet modification capabilities of the Windows Filtering Platform (WFP).
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617930
+--->
+
+
Windows Filtering Platform Packet Modification Sample
=====================================================
diff --git a/network/trans/inspect/README.md b/network/trans/inspect/README.md
index 4f28598c..2c197c4f 100644
--- a/network/trans/inspect/README.md
+++ b/network/trans/inspect/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: Windows Filtering Platform Traffic Inspection Sample
+ platform: KMDF
+ language: cpp
+ category: Network
+ description: Demonstrates the traffic inspection capabilities of the Windows Filtering Platform (WFP).
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617931
+--->
+
+
Windows Filtering Platform Traffic Inspection Sample
====================================================
diff --git a/network/trans/msnmntr/README.md b/network/trans/msnmntr/README.md
index fcc9c420..14127cbc 100644
--- a/network/trans/msnmntr/README.md
+++ b/network/trans/msnmntr/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: Windows Filtering Platform MSN Messenger Monitor Sample
+ platform: KMDF
+ language: cpp
+ category: Network
+ description: Demonstrates the stream inspection capabilities of the Windows Filtering Platform (WFP).
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617932
+--->
+
+
Windows Filtering Platform MSN Messenger Monitor Sample
=======================================================
diff --git a/network/trans/stmedit/README.md b/network/trans/stmedit/README.md
index 0c434b07..67905639 100644
--- a/network/trans/stmedit/README.md
+++ b/network/trans/stmedit/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: Windows Filtering Platform Stream Edit Sample
+ platform: KMDF
+ language: cpp
+ category: Network
+ description: Demonstrates replacing a string pattern for a Transmission Control Protocol (TCP) connection using the Windows Filtering Platform (WFP).
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617933
+--->
+
+
Windows Filtering Platform Stream Edit Sample
=============================================
diff --git a/network/wsk/echosrv/README.md b/network/wsk/echosrv/README.md
index 8b93db2d..96cc02d5 100644
--- a/network/wsk/echosrv/README.md
+++ b/network/wsk/echosrv/README.md
@@ -1,3 +1,13 @@
+<!---
+ name: WSK TCP Echo Server
+ platform: WDM
+ language: cpp
+ category: Network
+ description: A minimal sample driver to demonstrate the usage of the Winsock Kernel (WSK) programming interface.
+ samplefwlink: http://go.microsoft.com/fwlink/p/?LinkId=617935
+--->
+
+
WSK TCP Echo Server
===================