Method
pack_callheader
(self, xid, prog, vers, proc, cred, verf)
Source from the content-addressed store, hash-verified
| 109 | self.pack_uint(i) |
| 110 | |
| 111 | def pack_callheader(self, xid, prog, vers, proc, cred, verf): |
| 112 | self.pack_uint(xid) |
| 113 | self.pack_enum(msg_type.CALL) |
| 114 | self.pack_uint(RPCVERSION) |
| 115 | self.pack_uint(prog) |
| 116 | self.pack_uint(vers) |
| 117 | self.pack_uint(proc) |
| 118 | self.pack_auth(cred) |
| 119 | self.pack_auth(verf) |
| 120 | # Caller must add procedure-specific part of call |
| 121 | |
| 122 | def pack_replyheader(self, xid, verf): |
| 123 | self.pack_uint(xid) |
Tested by
no test coverage detected