This file is indexed.

/usr/include/libsoup-2.4/libsoup/soup-portability.h is in libsoup2.4-dev 2.48.0-1+deb8u1.

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
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: t; c-basic-offset: 8 -*- */
/*
 * Copyright (C) 2005, Novell, Inc.
 */

#ifndef SOUP_PORTABILITY_H
#define SOUP_PORTABILITY_H

#include <libsoup/soup-types.h>

#ifdef G_OS_WIN32

#include <winsock2.h>
#include <ws2tcpip.h>

#else

#include <netinet/in.h>
#include <netinet/tcp.h>
#include <arpa/inet.h>
#include <sys/socket.h>
#include <netdb.h>

#endif

#endif /* SOUP_PORTABILITY_H */