|   | 102 |  * After all the parsing and function calls the node handler finally sends information to the client part of the code. | 
          
          
            |   | 103 |  * The client will run a driver specific (Atheros based) initialization of the code. (Currently uses iwpriv and iwconfig to do this) | 
          
          
            |   | 104 |  * These calls have to be replaced with wlanconfig calls supported by the Atheros drivers. | 
          
          
            |   | 105 |  * The data structure used for consistency check which checks the number of interfaces defined on a node could be either local to the node or could be global to the entire grid. Personally, I prefer delineating node specific information and keeping it with the node. Status checks can be made with appropriate definition of API. | 
          
          
            |   | 106 |  * The local data structure will have the following fields | 
          
          
            |   | 107 |    {{{ | 
          
          
            |   | 108 |       max_interface_number_allocated; - indicates the maximum number for the allocated interfaces. | 
          
          
            |   | 109 |   | 
          
          
            |   | 110 |       allocation_table | 
          
          
            |   | 111 |                 | 
          
          
            |   | 112 |                 interface | defined? |  | 
          
          
            |   | 113 |                 ---------------------------------                | 
          
          
            |   | 114 |                    w0     |    'y'   | | 
          
          
            |   | 115 |                    w1     |    'n'   | | 
          
          
            |   | 116 |    }}} | 
          
          
            |   | 117 |  |