This file is indexed.

/usr/include/sipwitch/sipwitch.h is in libsipwitch-dev 1.6.1-2build2.

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
// Copyright (C) 2006-2010 David Sugar, Tycho Softworks.
//
// This program is free software; you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation; either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the
// GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

/**
 * Top level include directory for GNU Telephony SIP Witch Server.
 * This is a master include file that will be used when producing
 * plugins for GNU SIP Witch.  It includes all generic library headers
 * from both SIP Witch and UCommon.
 * @file sipwitch/sipwitch.h
 */

#ifndef _SIPWITCH_SIPWITCH_H_
#define _SIPWITCH_SIPWITCH_H_

#include <ucommon/ucommon.h>

#include <sipwitch/namespace.h>
#include <sipwitch/mapped.h>
#include <sipwitch/events.h>
#include <sipwitch/service.h>
#include <sipwitch/modules.h>
#include <sipwitch/control.h>
#include <sipwitch/cache.h>
#include <sipwitch/db.h>
#include <sipwitch/stats.h>
#include <sipwitch/uri.h>
#include <sipwitch/cdr.h>

/**
 * @short SIP Witch common library and API services.
 * SIP Witch is packaged as a server with supporting libraries which may
 * be used together to build SIP based telephony services.
 * @author David Sugar <dyfet@gnutelephony.org>
 * @license GNU GPL Version 3 or later.
 * @mainpage GNU SIP Witch
 */

#endif