(self, auth)
| 95 | class Packer(xdrlib.Packer): |
| 96 | |
| 97 | def pack_auth(self, auth): |
| 98 | flavor, stuff = auth |
| 99 | self.pack_enum(flavor) |
| 100 | self.pack_opaque(stuff) |
| 101 | |
| 102 | def pack_auth_unix(self, stamp, machinename, uid, gid, gids): |
| 103 | self.pack_uint(stamp) |
no outgoing calls
no test coverage detected