This file is indexed.

/usr/include/bobcat/localclientsocket is in libbobcat-dev 4.01.03-2ubuntu1.

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
#ifndef INCLUDED_BOBCAT_LOCALCLIENTSOCKET_
#define INCLUDED_BOBCAT_LOCALCLIENTSOCKET_

#include <bobcat/localsocketbase>

#include <string>
#include <sys/socket.h>
#include <sys/un.h>

namespace FBB
{

class LocalClientSocket: public LocalSocketBase
{
    public:
        LocalClientSocket() = default;
        explicit LocalClientSocket(std::string const &name);

        void open(std::string const &name);
        int connect();          // returns fd (socket) to talk to the server
    private:
        LocalClientSocket(LocalClientSocket const &other) = delete;
};

inline LocalClientSocket::LocalClientSocket(std::string const &name) 
:
    LocalSocketBase(name)
{}

inline void LocalClientSocket::open(std::string const &name)
{
    LocalSocketBase::open(name);
}

} // FBB

#endif