This file is indexed.

/usr/include/libsoup-2.4/libsoup/soup-tld.h is in libsoup2.4-dev 2.62.1-1.

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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2012 Igalia S.L.
 */

#ifndef __SOUP_TLD_H__
#define __SOUP_TLD_H__

#include <libsoup/soup-types.h>

G_BEGIN_DECLS

SOUP_AVAILABLE_IN_2_40
const char *soup_tld_get_base_domain         (const char *hostname,
					      GError    **error);

SOUP_AVAILABLE_IN_2_40
gboolean    soup_tld_domain_is_public_suffix (const char *domain);

/* Errors */
SOUP_AVAILABLE_IN_2_40
GQuark soup_tld_error_quark (void);
#define SOUP_TLD_ERROR soup_tld_error_quark()

typedef enum {
	SOUP_TLD_ERROR_INVALID_HOSTNAME,
	SOUP_TLD_ERROR_IS_IP_ADDRESS,
	SOUP_TLD_ERROR_NOT_ENOUGH_DOMAINS,
	SOUP_TLD_ERROR_NO_BASE_DOMAIN
} SoupTLDError;

G_END_DECLS

#endif /* __SOUP_TLD_H__ */