This file is indexed.

/usr/include/libecap/common/body.h is in libecap2-dev 0.2.0-1ubuntu4.

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
/* (C) 2008 The Measurement Factory */

#ifndef LIBECAP__COMMON__BODY_H
#define LIBECAP__COMMON__BODY_H

#include <libecap/common/body_size.h>

namespace libecap {

// a message body buffer shared by the body producer and consumer
// usually implemented by the host, but can be implemented by adapters
// TODO: get rid of this class by moving BodySize info to Message
class Body {
	public:
		virtual ~Body() {}

		// stats
		virtual BodySize bodySize() const = 0;
};

} // namespace libecap

#endif