PPI: Add optional template arg for packet type to connectors
[senf.git] / PPI / PassiveQueue.hh
index 58bb1b0..c5adc20 100644 (file)
@@ -1,3 +1,5 @@
+// $Id$
+//
 // Copyright (C) 2007 
 // Fraunhofer Institute for Open Communication Systems (FOKUS) 
 // Competence Center NETwork research (NET), St. Augustin, GERMANY 
@@ -43,7 +45,7 @@ namespace module {
         requested from the passive output, a packet is dequeued. 
 
         The PassiveQueue will automatically throttle in both directions. Throttling on the input
-        connector is the standard throttling as implemented in connector::PassiveInput. Additional,
+        connector is the standard throttling as implemented in connector::GenericPassiveInput. Additional,
         forward throttling notifications are sent out whenever the queue is empty.
 
         \ingroup adapter_modules
@@ -53,8 +55,8 @@ namespace module {
     {
         SENF_PPI_MODULE(PassiveQueue);
     public:
-        connector::PassiveInput input;
-        connector::PassiveOutput output;
+        connector::PassiveInput<> input;
+        connector::PassiveOutput<> output;
         
         PassiveQueue();
 
@@ -64,7 +66,7 @@ namespace module {
                                              queue. This call is just forwarded to the \a input
                                              connector.
                                              
-                                             \see connector::PassiveInput::qdisc() */
+                                             \see connector::GenericPassiveInput::qdisc() */
 
     private:
         void init();