(self, xid, verf)
| 120 | # Caller must add procedure-specific part of call |
| 121 | |
| 122 | def pack_replyheader(self, xid, verf): |
| 123 | self.pack_uint(xid) |
| 124 | self.pack_enum(msg_type.REPLY) |
| 125 | self.pack_uint(reply_stat.MSG_ACCEPTED) |
| 126 | self.pack_auth(verf) |
| 127 | self.pack_enum(accept_stat.SUCCESS) |
| 128 | # Caller must add procedure-specific part of reply |
| 129 | |
| 130 | |
| 131 | class Unpacker(xdrlib.Unpacker): |