This file is indexed.

/usr/include/csp/interfaces/csp_if_zmqhub.h is in libcsp-dev 1.4+fdd49b7+dfsg-3build1.

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

#include <csp/csp.h>

extern csp_iface_t csp_if_zmqhub;

/**
 * Setup ZMQ interface
 * @param addr only receive messages matching this address (255 means all)
 * @param host Pointer to string containing zmqproxy host
 * @return CSP_ERR
 */
int csp_zmqhub_init(char addr, char * host);

/**
 * Setup ZMQ interface
 * @param addr only receive messages matching this address (255 means all)
 * @param publisher_endpoint Pointer to string containing zmqproxy publisher endpoint
 * @param subscriber_endpoint Pointer to string containing zmqproxy subscriber endpoint
 * @return CSP_ERR
 */
int csp_zmqhub_init_w_endpoints(char _addr, char * publisher_url,
		char * subscriber_url);

#endif /* CSP_IF_ZMQHUB_H_ */