This file is indexed.

/usr/include/jsonrpc-glib-1.0/jsonrpc-client.h is in libjsonrpc-glib-1.0-dev 3.28.0-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
 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
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
/* jsonrpc-client.h
 *
 * Copyright (C) 2016 Christian Hergert <chergert@redhat.com>
 *
 * This file is free software; you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by the Free
 * Software Foundation; either version 2.1 of the License, or (at your option)
 * any later version.
 *
 * This file 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 Lesser 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/>.
 */

#ifndef JSONRPC_CLIENT_H
#define JSONRPC_CLIENT_H

#include <gio/gio.h>

#include "jsonrpc-version-macros.h"

G_BEGIN_DECLS

#define JSONRPC_TYPE_CLIENT  (jsonrpc_client_get_type())
#define JSONRPC_CLIENT_ERROR (jsonrpc_client_error_quark())

typedef enum
{
  JSONRPC_CLIENT_ERROR_PARSE_ERROR      = -32700,
  JSONRPC_CLIENT_ERROR_INVALID_REQUEST  = -32600,
  JSONRPC_CLIENT_ERROR_METHOD_NOT_FOUND = -32601,
  JSONRPC_CLIENT_ERROR_INVALID_PARAMS   = -32602,
  JSONRPC_CLIENT_ERROR_INTERNAL_ERROR   = -32603,
} JsonrpcClientError;

JSONRPC_AVAILABLE_IN_3_26
G_DECLARE_DERIVABLE_TYPE (JsonrpcClient, jsonrpc_client, JSONRPC, CLIENT, GObject)

struct _JsonrpcClientClass
{
  GObjectClass parent_class;

  void     (*notification) (JsonrpcClient *self,
                            const gchar   *method_name,
                            GVariant      *params);
  gboolean (*handle_call)  (JsonrpcClient *self,
                            const gchar   *method,
                            GVariant      *id,
                            GVariant      *params);
  void     (*failed)       (JsonrpcClient *self);

  gpointer _reserved2;
  gpointer _reserved3;
  gpointer _reserved4;
  gpointer _reserved5;
  gpointer _reserved6;
  gpointer _reserved7;
  gpointer _reserved8;
};

JSONRPC_AVAILABLE_IN_3_26
GQuark         jsonrpc_client_error_quark              (void);
JSONRPC_AVAILABLE_IN_3_26
JsonrpcClient *jsonrpc_client_new                      (GIOStream            *io_stream);
JSONRPC_AVAILABLE_IN_3_26
gboolean       jsonrpc_client_get_use_gvariant         (JsonrpcClient        *self);
JSONRPC_AVAILABLE_IN_3_26
void           jsonrpc_client_set_use_gvariant         (JsonrpcClient        *self,
                                                        gboolean              use_gvariant);
JSONRPC_AVAILABLE_IN_3_26
gboolean       jsonrpc_client_close                    (JsonrpcClient        *self,
                                                        GCancellable         *cancellable,
                                                        GError              **error);
JSONRPC_AVAILABLE_IN_3_26
void           jsonrpc_client_close_async              (JsonrpcClient        *self,
                                                        GCancellable         *cancellable,
                                                        GAsyncReadyCallback   callback,
                                                        gpointer              user_data);
JSONRPC_AVAILABLE_IN_3_26
gboolean       jsonrpc_client_close_finish             (JsonrpcClient        *self,
                                                        GAsyncResult         *result,
                                                        GError              **error);
JSONRPC_AVAILABLE_IN_3_26
gboolean       jsonrpc_client_call                     (JsonrpcClient        *self,
                                                        const gchar          *method,
                                                        GVariant             *params,
                                                        GCancellable         *cancellable,
                                                        GVariant            **return_value,
                                                        GError              **error);
JSONRPC_AVAILABLE_IN_3_26
void           jsonrpc_client_call_async               (JsonrpcClient        *self,
                                                        const gchar          *method,
                                                        GVariant             *params,
                                                        GCancellable         *cancellable,
                                                        GAsyncReadyCallback   callback,
                                                        gpointer              user_data);
JSONRPC_AVAILABLE_IN_3_26
gboolean       jsonrpc_client_call_finish              (JsonrpcClient        *self,
                                                        GAsyncResult         *result,
                                                        GVariant            **return_value,
                                                        GError              **error);
JSONRPC_AVAILABLE_IN_3_26
gboolean       jsonrpc_client_send_notification        (JsonrpcClient        *self,
                                                        const gchar          *method,
                                                        GVariant             *params,
                                                        GCancellable         *cancellable,
                                                        GError              **error);
JSONRPC_AVAILABLE_IN_3_26
void           jsonrpc_client_send_notification_async  (JsonrpcClient        *self,
                                                        const gchar          *method,
                                                        GVariant             *params,
                                                        GCancellable         *cancellable,
                                                        GAsyncReadyCallback   callback,
                                                        gpointer              user_data);
JSONRPC_AVAILABLE_IN_3_26
gboolean       jsonrpc_client_send_notification_finish (JsonrpcClient        *self,
                                                        GAsyncResult         *result,
                                                        GError              **error);
JSONRPC_AVAILABLE_IN_3_26
gboolean       jsonrpc_client_reply                    (JsonrpcClient        *self,
                                                        GVariant             *id,
                                                        GVariant             *result,
                                                        GCancellable         *cancellable,
                                                        GError              **error);
JSONRPC_AVAILABLE_IN_3_26
void           jsonrpc_client_reply_async              (JsonrpcClient        *self,
                                                        GVariant             *id,
                                                        GVariant             *result,
                                                        GCancellable         *cancellable,
                                                        GAsyncReadyCallback   callback,
                                                        gpointer              user_data);
JSONRPC_AVAILABLE_IN_3_26
gboolean       jsonrpc_client_reply_finish             (JsonrpcClient        *self,
                                                        GAsyncResult         *result,
                                                        GError              **error);
JSONRPC_AVAILABLE_IN_3_28
void           jsonrpc_client_reply_error_async        (JsonrpcClient        *self,
                                                        GVariant             *id,
                                                        gint                  code,
                                                        const gchar          *message,
                                                        GCancellable         *cancellable,
                                                        GAsyncReadyCallback   callback,
                                                        gpointer              user_data);
JSONRPC_AVAILABLE_IN_3_28
gboolean       jsonrpc_client_reply_error_finish       (JsonrpcClient        *self,
                                                        GAsyncResult         *result,
                                                        GError              **error);
JSONRPC_AVAILABLE_IN_3_26
void           jsonrpc_client_start_listening          (JsonrpcClient        *self);

G_END_DECLS

#endif /* JSONRPC_CLIENT_H */