/[cwmp]/google/lib/CWMP/Response.pm
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /google/lib/CWMP/Response.pm

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 63 by dpavlin, Wed Jun 20 21:33:45 2007 UTC revision 64 by dpavlin, Wed Jun 20 21:44:57 2007 UTC
# Line 83  sub Reboot { Line 83  sub Reboot {
83    
84  =head2 GetParameterNames {  =head2 GetParameterNames {
85    
86    $response->GetParameterNames( $state,  );    $response->GetParameterNames( $state, $ParameterPath, $NextLevel );
87    
88  =cut  =cut
89    
90  sub GetParameterNames {  sub GetParameterNames {
91          my ( $self, $state ) = @_;          my ( $self, $state, $ParameterPath, $NextLevel ) = @_;
92            $ParameterPath ||= '';  # all
93            $NextLevel ||= 0;               # all
94            warn "# GetParameterNames( '$ParameterPath', $NextLevel )\n" if $self->debug;
95          $self->xml( $state, sub {          $self->xml( $state, sub {
96                  my ( $X, $state ) = @_;                  my ( $X, $state ) = @_;
97    
98                  $X->GetParameterNames( $cwmp,                  $X->GetParameterNames( $cwmp,
99                          $X->ParameterPath( $cwmp, ''),                          $X->ParameterPath( $cwmp, $ParameterPath ),
100                          $X->NextLevel( $cwmp, 0 ),                          $X->NextLevel( $cwmp, $NextLevel ),
101                  );                  );
102          });          });
103  }  }

Legend:
Removed from v.63  
changed lines
  Added in v.64

  ViewVC Help
Powered by ViewVC 1.1.26