This file is indexed.

/usr/include/ggi/display/ipc.h is in libggi2-dev 1:2.2.2-5ubuntu2.

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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
/* $Id: ipc.h,v 1.6 2004/02/14 22:30:47 cegger Exp $
******************************************************************************

   Display-memory: headers

   Copyright (C) 1997 Andreas Beck	[becka@ggi-project.org]
   Copyright (C) 2001 Stefan Seefeld	[stefan@berlin-consortium.org]

   Permission is hereby granted, free of charge, to any person obtaining a
   copy of this software and associated documentation files (the "Software"),
   to deal in the Software without restriction, including without limitation
   the rights to use, copy, modify, merge, publish, distribute, sublicense,
   and/or sell copies of the Software, and to permit persons to whom the
   Software is furnished to do so, subject to the following conditions:

   The above copyright notice and this permission notice shall be included in
   all copies or substantial portions of the Software.

   THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
   THE AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
   IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
   CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

******************************************************************************
*/

#ifndef _GGI_DISPLAY_IPC_H
#define _GGI_DISPLAY_IPC_H

#include <ggi/internal/ggi-dl.h>


#define INPBUFSIZE	8192
#define MEMINPMAGIC	'M'

#if defined(__WIN32__) && !defined(__CYGWIN__)
# ifdef HAVE_WINSOCK2_H
#  include <winsock2.h>
# endif
# ifdef HAVE_WINSOCK_H
#  include <winsock.h>
# endif
#endif

#ifdef HAVE_SYS_TYPES_H
# include <sys/types.h>
#endif

#ifdef HAVE_SYS_SOCKET_H
# include <sys/socket.h>
#endif

#ifdef HAVE_SYS_UN_H
# include <sys/un.h>
#endif

#ifdef HAVE_SYS_SHM_H
# include <sys/shm.h>
#endif

ggifunc_flush            GGI_ipc_flush;
ggifunc_getmode		 GGI_ipc_getmode;
ggifunc_setmode		 GGI_ipc_setmode;
ggifunc_getapi		 GGI_ipc_getapi;
ggifunc_checkmode	 GGI_ipc_checkmode;
ggifunc_setflags	 GGI_ipc_setflags;
ggifunc_setPalette       GGI_ipc_setPalette;

typedef struct
{
  int writeoffset;	/* We should lock access to that one ... */
  int visx,visy,virtx,virty,frames,visframe,type;
  char buffer[1];		/* This index will be used "overflowing" */
} inpbuffer;

typedef struct
{
	PHYSZ_DATA

	void *memptr;
	inpbuffer *inputbuffer;
	int inputoffset;
	int sockfd;
	int semid;
	int shmid;
} ggi_ipc_priv;

#define IPC_PRIV(vis) ((ggi_ipc_priv *)LIBGGI_PRIVATE(vis))

int _GGI_ipc_resetmode(ggi_visual *vis);

#endif /* _GGI_DISPLAY_IPC_H */