()
| 576 | } |
| 577 | |
| 578 | func (e xauthEntry) Len() int { |
| 579 | // 5 * uint16 = 10 bytes for the family/length fields. |
| 580 | return 2*5 + len(e.address) + len(e.display) + len(e.authProtocol) + len(e.authCookie) |
| 581 | } |
| 582 | |
| 583 | func readXauthEntry(r io.Reader) (xauthEntry, error) { |
| 584 | var entry xauthEntry |
no outgoing calls