Browse Source

1. Add TODO list.
2. Fix the problem of function 'config_handler'.

git-svn-id: svn://bind10.isc.org/svn/bind10/trunk@1278 e5f2f494-b856-4b98-b285-d166d9295462

Likun Zhang 15 years ago
parent
commit
299437c44e
2 changed files with 3 additions and 1 deletions
  1. 1 0
      src/bin/xfrin/TODO
  2. 2 1
      src/bin/xfrin/xfrin.py.in

+ 1 - 0
src/bin/xfrin/TODO

@@ -0,0 +1 @@
+1. When xfrin's config data is changed, new config data should be applied.

+ 2 - 1
src/bin/xfrin/xfrin.py.in

@@ -308,7 +308,8 @@ class Xfrin():
 
 
     def config_handler(self, new_config):
-        answer = create_answer(0, 'ok')
+        # TODO, process new config data
+        return create_answer(0)
 
 
     def _print_settings(self):