aboutsummaryrefslogtreecommitdiffstats
path: root/grc/misc_utils
diff options
context:
space:
mode:
authorptrkrysik <ptrkrysik@gmail.com>2014-08-16 11:47:48 +0200
committerptrkrysik <ptrkrysik@gmail.com>2014-08-16 11:47:48 +0200
commit0da1c63dd4caff0376fba32ef7ca3c4a19349883 (patch)
treeb4543f4fff40a5581ebdcdb7be8b58d9302f2b02 /grc/misc_utils
parent3c6dfcc16fd78d9a37110a368f9577593a473f80 (diff)
Moved wireshark_sink.xml to subdirectory
Diffstat (limited to 'grc/misc_utils')
-rw-r--r--grc/misc_utils/gsm_wireshark_sink.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/grc/misc_utils/gsm_wireshark_sink.xml b/grc/misc_utils/gsm_wireshark_sink.xml
new file mode 100644
index 0000000..1e810d1
--- /dev/null
+++ b/grc/misc_utils/gsm_wireshark_sink.xml
@@ -0,0 +1,38 @@
+<?xml version="1.0"?>
+<block>
+ <name>wireshark_sink</name>
+ <key>gsm_wireshark_sink</key>
+ <category>gsm</category>
+ <import>import gsm</import>
+ <make>gsm.wireshark_sink()</make>
+ <!-- Make one 'param' node for every Parameter you want settable from the GUI.
+ Sub-nodes:
+ * name
+ * key (makes the value accessible as $keyname, e.g. in the make node)
+ * type -->
+ <param>
+ <name>...</name>
+ <key>...</key>
+ <type>...</type>
+ </param>
+
+ <!-- Make one 'sink' node per input. Sub-nodes:
+ * name (an identifier for the GUI)
+ * type
+ * vlen
+ * optional (set to 1 for optional inputs) -->
+ <sink>
+ <name>in</name>
+ <type><!-- e.g. int, float, complex, byte, short, xxx_vector, ...--></type>
+ </sink>
+
+ <!-- Make one 'source' node per output. Sub-nodes:
+ * name (an identifier for the GUI)
+ * type
+ * vlen
+ * optional (set to 1 for optional inputs) -->
+ <source>
+ <name>out</name>
+ <type><!-- e.g. int, float, complex, byte, short, xxx_vector, ...--></type>
+ </source>
+</block>