Changeset 74 for branches/home/psmith/restructure/src/protocol/yarpc
- Timestamp:
- 02/06/07 03:43:57 (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified branches/home/psmith/restructure/src/protocol/yarpc/yarpc-state-machine.lisp ¶
r50 r74 103 103 104 104 (defun execute-call (call-string) 105 (handler-case 105 106 (let* ((rpc-call-list (read-from-string call-string )) 106 107 (fn (member (symbol-function (first rpc-call-list)) *remote-fns* ))) … … 108 109 (if fn 109 110 (apply (first rpc-call-list) (rest rpc-call-list)) 110 (error 'authorization-error)))) 111 (error 'authorization-error))) 112 (reader-error (re) (format-log t "yarpc-state-machine:execute-call - reader error on call-string ~A ~%" re)))) 111 113 112 114 ;;end move TODO
Note: See TracChangeset
for help on using the changeset viewer.