fixed some typos
tho [Wed, 4 Jul 2007 14:33:38 +0000 (14:33 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@285 270642c3-0616-0410-b53a-bc976706d245

PPI/Connectors.hh
PPI/Events.hh
PPI/Mainpage.dox
PPI/Module.hh
PPI/PassiveQueue.hh
PPI/Queueing.hh
PPI/SocketReader.hh
PPI/SocketWriter.hh

index 7305d9f..d82e14a 100644 (file)
@@ -143,7 +143,7 @@ namespace connector {
                                              this input. In the second case, the pointer will
                                              automatically be bound to the containing instance.
 
-                                             \param[in] handler Handler to call on throttle
+                                             \param[in] handle Handler to call on throttle
                                                  notifications. */
 
         template <class Handler>
@@ -155,7 +155,7 @@ namespace connector {
                                              holds this input. In the second case, the pointer will
                                              automatically be bound to the containing instance.
 
-                                             \param[in] handler Handler to call on unthrottle
+                                             \param[in] handle Handler to call on unthrottle
                                                  notifications. */
 
         PassiveConnector & peer();
@@ -204,7 +204,7 @@ namespace connector {
                                              exception is raised. */
         operator unspecified_boolean_type (); ///< Check packet availability
                                         /**< Using any input connector in a boolean context will
-                                             check, wether an input request can be fulfilled. This
+                                             check, whether an input request can be fulfilled. This
                                              is always possible if the queue is non-empty. If the
                                              input is active, it also returns when the connected
                                              passive output is not throttled so new packets can be
@@ -264,7 +264,7 @@ namespace connector {
         queue throttling state. This state is automatically managed by a queueing discipline. The
         standard queueing discipline is ThresholdQueueing, which throttles the connection whenever
         the queue length reaches the high threshold and unthrottles the connection when the queue
-        reaches the low threshold. The default queueing discpiline is
+        reaches the low threshold. The default queueing discipline is
         <tt>ThresholdQueueing(1,0)</tt> which will throttle the input whenever the queue is
         non-empty.
      */
@@ -299,7 +299,7 @@ namespace connector {
     public:
         PassiveOutput & peer();
 
-        void request();                 ///< request more packets without dequeing any packet
+        void request();                 ///< request more packets without dequeuing any packet
     };
 
     /** \brief Combination of ActiveConnector and OutputConnector
index 0a89adb..ed35f1f 100644 (file)
@@ -34,7 +34,7 @@ namespace ppi {
 
     /** \brief Generic event interface baseclass
 
-        The EventDescriptor baseclass provides an interface to manuplate events in a generic
+        The EventDescriptor baseclass provides an interface to manipulate events in a generic
         way. This allows to register events or to temporarily disable event processing.
      */ 
     class EventDescriptor
@@ -53,7 +53,7 @@ namespace ppi {
         virtual void v_register(CallbackType handler) = 0; ///< Called to register the event
         virtual void v_unregister() = 0; ///< Called to unregister the event
         virtual void v_enable() = 0;    ///< Called to enable the event delivery
-        virtual void v_disable() = 0;   ///< Called to disable the event delilvery
+        virtual void v_disable() = 0;   ///< Called to disable the event delivery
         virtual void v_process() = 0;   ///< Called whenever the event is signaled
                                         /**< This virtual method is called \e after every call to
                                              the event handler to provide a hook for further
index 90012b3..2020f02 100644 (file)
@@ -20,7 +20,7 @@
 
 /** \mainpage libPPI : The Packet Processing Infrastructure
 
-    The PPI provides an infrastructure to create packet oriented network processin
+    The PPI provides an infrastructure to create packet oriented network processing
     applications. A PPI application is built by combining processing modules in a very flexible
     manner.
 
     up. The buffering on the udpInput <-> rateStuffer adaptor is changed so the queue will begin to
     throttle only if more than 10 packets are in the queue. The connection will be unthrottled as
     soon as there are no more than 5 packets left in the queue. This application will read
-    udp-packts coming in on port 1111 and will forward them to port 2222 on host 2.3.4.5 with a
+    udp-packets coming in on port 1111 and will forward them to port 2222 on host 2.3.4.5 with a
     fixed rate of 10 packets / second.
 
     \section throttling Throttling
     by the template argument.
 
     We register an IOSignaler event. This event will be signaled whenever the socket is
-    readable. This event is routet to the output. This routing automates throttling for the socket:
+    readable. This event is routed to the output. This routing automates throttling for the socket:
     Whenever the output receives a throttle notifications, the event will be temporarily disabled.
 
     Processing arriving packets happens in the \c data() member: This member simple reads a packet
index 0c9894c..6f998c0 100644 (file)
@@ -79,9 +79,9 @@ namespace module {
                                              The return value may be used to alter routing
                                              parameters like throttling parameters.
                                              
-                                             \param[in] source Data source, object which controlls
+                                             \param[in] source Data source, object which controls
                                                  incoming data
-                                             \param[in] target Data target, object which controlls
+                                             \param[in] target Data target, object which controls
                                                  outgoing data
                                              \returns Route instance describing this route */
 
index ba28888..5bc0d2a 100644 (file)
@@ -52,7 +52,7 @@ namespace module {
         PassiveQueue();
 
         void qdisc(QueueingDiscipline const & disc); ///< Change the queueing discipline
-        /**< This call changs the queueing discipline of the queue. This call is just forwarded to
+        /**< This call changes the queueing discipline of the queue. This call is just forwarded to
              the \a input connector.
              
              \see connector::PassiveInput::qdisc() */
index 7410318..7ac162e 100644 (file)
@@ -54,7 +54,7 @@ namespace ppi {
                                              called to calculate the new throttling state.
                                              
                                              \param[in] input Connector holding the queue
-                                             \param[in] event Type of event triggering the upate
+                                             \param[in] event Type of event triggering the update
                                              \returns new throttling state */
     };
 
index 57326e3..2b1245b 100644 (file)
@@ -77,7 +77,7 @@ namespace module {
           class SomeReader
           {
           public:
-              typedef unspecified_type Handle;        // type of handle reqeusted
+              typedef unspecified_type Handle;        // type of handle requested
               SomeReader();                           // default constructible
               Packet::ptr operator()(Handle handle);  // extraction function
           };
@@ -89,7 +89,7 @@ namespace module {
     public:
         typedef typename Reader::Handle Handle; ///< Handle type requested by the reader
 
-        connector::ActiveOutput output; ///< Output connector to which the data recevied is writtten
+        connector::ActiveOutput output; ///< Output connector to which the data received is written
         
         ActiveSocketReader(Handle handle); ///< Create new reader for the given handle
                                         /**< Data will be read from \a handle and be parsed by \a
index 7c14c23..b954e9a 100644 (file)
@@ -37,7 +37,7 @@ namespace ppi {
 
     /** \brief Write helper for module::ActiveSocketWriter / module::PassiveSocketWriter
         
-        This write helper will write the packets completely as datagrmas to the given socket.
+        This write helper will write the packets completely as datagrams to the given socket.
      */
     class PacketWriter
     {