This file is indexed.

/usr/share/gocode/src/github.com/kolo/xmlrpc/response.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
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
package xmlrpc

import (
	"regexp"
)

var (
	faultRx = regexp.MustCompile(`<fault>(\s|\S)+</fault>`)
)

type failedResponse struct {
	Code  int    `xmlrpc:"faultCode"`
	Error string `xmlrpc:"faultString"`
}

func (r *failedResponse) err() error {
	return &xmlrpcError{
		code: r.Code,
		err:  r.Error,
	}
}

type Response struct {
	data []byte
}

func NewResponse(data []byte) *Response {
	return &Response{
		data: data,
	}
}

func (r *Response) Failed() bool {
	return faultRx.Match(r.data)
}

func (r *Response) Err() error {
	failedResp := new(failedResponse)
	if err := unmarshal(r.data, failedResp); err != nil {
		return err
	}

	return failedResp.err()
}

func (r *Response) Unmarshal(v interface{}) error {
	if err := unmarshal(r.data, v); err != nil {
		return err
	}

	return nil
}