diff options
Diffstat (limited to 'rpkid/pubd.py')
-rwxr-xr-x | rpkid/pubd.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/rpkid/pubd.py b/rpkid/pubd.py index f939b6cc..7882095e 100755 --- a/rpkid/pubd.py +++ b/rpkid/pubd.py @@ -54,7 +54,7 @@ class pubd_context(object): self.sql.sweep() return reply - def control_handler(self, query, path): + def control_handler(self, query, path, cb): """Process one PDU from the IRBE.""" rpki.log.trace() try: @@ -64,7 +64,7 @@ class pubd_context(object): rpki.log.error(traceback.format_exc()) return 500, "Unhandled exception %s" % data - def client_handler(self, query, path): + def client_handler(self, query, path, cb): """Process one PDU from a client.""" rpki.log.trace() try: |