This file is indexed.

/usr/share/gocode/src/github.com/kolo/xmlrpc/xmlrpc.go is in golang-github-kolo-xmlrpc-dev 0+git20150413.0826b98-2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
package xmlrpc

import (
	"fmt"
)

// xmlrpcError represents errors returned on xmlrpc request.
type xmlrpcError struct {
	code int
	err  string
}

// Error() method implements Error interface
func (e *xmlrpcError) Error() string {
	return fmt.Sprintf("error: \"%s\" code: %d", e.err, e.code)
}

// Base64 represents value in base64 encoding
type Base64 string