summaryrefslogtreecommitdiff
path: root/gr-blocks/include/blocks
diff options
context:
space:
mode:
authorTom Rondeau <trondeau@vt.edu>2013-03-05 21:50:45 -0500
committerTom Rondeau <trondeau@vt.edu>2013-03-05 21:50:45 -0500
commit2e9de83a929192a65b827b964bd4452c20ef8756 (patch)
tree9a728f38a57fb87ae521fffa99bd55a217f5dbcb /gr-blocks/include/blocks
parentb0650727571f99b242b699df3a2c70b49e7c5a27 (diff)
docs: fixing documentation for socket_pdu.
Diffstat (limited to 'gr-blocks/include/blocks')
-rw-r--r--gr-blocks/include/blocks/socket_pdu.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/gr-blocks/include/blocks/socket_pdu.h b/gr-blocks/include/blocks/socket_pdu.h
index 1a67f8358c..0ed64a2557 100644
--- a/gr-blocks/include/blocks/socket_pdu.h
+++ b/gr-blocks/include/blocks/socket_pdu.h
@@ -41,8 +41,10 @@ namespace gr {
/*!
* \brief Construct a SOCKET PDU interface
- * \param dev Device name to create
- * \param MTU Maximum Transmission Unit size
+ * \param type "TCP_SERVER", "TCP_CLIENT", "UDP_SERVER", or "UDP_CLIENT"
+ * \param addr network address to use
+ * \param port network port to use
+ * \param MTU maximum transmission unit
*/
static sptr make(std::string type, std::string addr, std::string port, int MTU=10000);
};