1
0
mirror of https://github.com/mfontanini/libtins synced 2026-01-30 13:34:27 +01:00

Modified the Dot11 constructor.

This commit is contained in:
Matias Fontanini
2012-10-03 14:53:46 -03:00
parent 16a81c0589
commit da60d99f98
4 changed files with 234 additions and 258 deletions

View File

@@ -218,11 +218,16 @@ public:
* \brief Starts following TCP streams.
*
* This overload takes a range of iterators containing the PDUs
* in which TCP streams will be looked up and followed.
* in which TCP streams will be looked up and followed. The iterators
* will be dereferenced until a PDU& is found, so iterators can hold
* not only PDUs, but also smart pointers, etc.
*
* The template functors must accept a TCPStream& as argument, which
* will point to the stream which has been modified.
*
* The state of the PDUs stored in the iterator range provided might
* be modified internally.
*
* \param start The start of the range of PDUs.
* \param end The start of the range of PDUs.
* \param data_fun The function which will be called whenever one of
@@ -252,11 +257,16 @@ public:
* \brief Starts following TCP streams.
*
* This overload takes a range of iterators containing the PDUs
* in which TCP streams will be looked up and followed.
* in which TCP streams will be looked up and followed. The iterators
* will be dereferenced until a PDU& is found, so iterators can hold
* not only PDUs, but also smart pointers, etc.
*
* The template functors must accept a TCPStream& as argument, which
* will point to the stream which has been modified.
*
* The state of the PDUs stored in the iterator range provided might
* be modified internally.
*
* \param start The start of the range of PDUs.
* \param end The start of the range of PDUs.
* \param data_fun The function which will be called whenever one of