This file is indexed.

/usr/include/iphbd/libiphb.h is in libiphb-dev 1.2.4+15.10.20150929-0ubuntu1.

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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/**
   @brief This is the interface to IP heartbeat service (via libiphb).

   @file libiphb.h

   This is the interface to IP heartbeat service (via libiphb).

   <p>
   Copyright (C) 2008-2011 Nokia Corporation.

   @author Raimo Vuonnala <raimo.vuonnala@nokia.com>
   @author Semi Malinen <semi.malinen@nokia.com>

   This file is part of Dsme.

   Dsme is free software; you can redistribute it and/or modify
   it under the terms of the GNU Lesser General Public License
   version 2.1 as published by the Free Software Foundation.

   Dsme 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 Lesser General Public
   License along with Dsme.  If not, see <http://www.gnu.org/licenses/>.
*/
#ifndef IPHB_H
#define IPHB_H

#include <time.h>


/**
   Handle to IP heartbeat service (NULL is invalid handle) 
*/
typedef void * iphb_t;




/**
   Open iphb service.

   @param       dummy (for compatibility), can be NULL

   @return	handle for iphb, NULL if error (check errno). 
                If error, behave just like before (i.e. no heartbeat service)

*/

iphb_t iphb_open(int *dummy);







/**
   "Global sync" predefined values (slots), see iphb_wait() function.
   The timeline is divided into "fixed global slots (GS)" (all waiters for a certain slot
   are woken up at the same time (also the lower-value waiters).
 */
#define IPHB_GS_WAIT_30_SEC         30   //!< 30 second wakeup slot
#define IPHB_GS_WAIT_2_5_MINS (2*60+30)  //!< 2.5 minute wakeup slot, the users of the previous slots wake here as well
#define IPHB_GS_WAIT_5_MINS   (5*60)     //!< 5 minute wakeup slot, the users of the previous slots wake here as well
#define IPHB_GS_WAIT_10_MINS  (10*60)    //!< 10 minute wakeup slot, the users of the previous slots wake here as well;
                                         //      you can use any multiplication of IPHB_GS_WAIT_10_MINS, although it
                                         //      is recommended to use these predefined values
#define IPHB_GS_WAIT_30_MINS  (30*60)    //!< 30 minute wakeup slot, the users of the previous slots wake here as well
#define IPHB_GS_WAIT_1_HOUR   (60*60)    //!< 1 hour wakeup slot, the users of the previous slots wake here as well
#define IPHB_GS_WAIT_2_HOURS  (2*60*60)  //!< 2 hours wakeup slot, the users of the previous slots wake here as well
#define IPHB_GS_WAIT_10_HOURS (10*60*60) //!< 10 hours wakeup slot, the users of the previous slots wake here as well



/**
   Wait for the next heartbeat. 


   @param iphbh		Handle got from iphb_open
   @param mintime	Time in seconds that MUST be waited before heartbeat is reacted to.
                        Value 0 means 'wake me up when someboy else is woken'
   @param maxtime	Time in seconds when the wait MUST end. It is wise to have maxtime-mintime quite big so all users of this service get synced.
                        It is also possible to use "global synchronization" by setting a IPHB_GS_WAIT_* value to
                        both mintime and maxtime (same value for both) - you will be waken up when the next proper slot 
                        is fired. 
   @param must_wait	1 if this functions waits for heartbeat, 0 if you are going to use select/poll (see iphb_get_fd) 

   @return		Time waited, (time_t)-1 if error (check errno)


*/
time_t
iphb_wait(iphb_t iphbh, unsigned short mintime, unsigned short maxtime, int must_wait);


/**
   Wait for the next heartbeat.

   There can be only one wakeup / iphb handle. Calling this function cancels
   any previously programmed wakeup. Using zero for both mintime and maxtime
   can be used to cancel without programming a new wakeup.

   If mintime == maxtime, a global wakeup slot is used rather than ranged
   wakeup. To maximize changes of synchronous wakeups the predefined
   IPHB_GS_WAIT_* values should be used.

   @param iphbh         Handle got from iphb_open

   @param mintime       Time in seconds that MUST be waited before heartbeat
                        is reacted to.

   @param maxtime       Time in seconds when the wait SHOULD end. It is wise to
                        have maxtime-mintime quite big to maximize chances that
                        other iphb clients can be woken up in sync.

   @param must_wait     If non-zero, this functions waits for the wakeup before
                        returning. Zero value means you need to use select/poll
                        and wait for the socket to become readable. The file
                        descriptor to wait for can be queried via iphb_get_fd().
                        Once the socket comes readable, the incoming data must
                        be flushed - iphb_discard_wakeups can be used for this.

   @param resume        If nonzero, the device is woken from suspend to end the
                        wait period. Use zero value if the client process can
                        wait until the device gets out of suspend for some other
                        reason.

   @return              Time waited, (time_t)-1 if error (check errno)
*/
time_t
iphb_wait2(iphb_t iphbh, unsigned mintime, unsigned maxtime, int must_wait,
	   int resume);




/**
   This function should be called if the application
   has woken up by some other method than via iphb.

   @param iphbh		Handle got from iphb_open

   @return		>=0 if OK (number of bytes wakeup bytes discarded), -1 if error (check errno)


*/
int
iphb_I_woke_up(iphb_t iphbh);




/**
   This function is private for Qt wrapper.
   has woken up by some other method than via iphb.

   @param iphbh		Handle got from iphb_open

   @return		>=0 if OK (number of bytes discarded), -1 if error (check errno)


*/
int
iphb_discard_wakeups(iphb_t iphbh);











/**
   Get file descriptor for iphb (for use with select()/poll())

   @param iphbh	Handle got from iphb_open

   @return	Descriptor that can be used for select/poll, -1 if error (check errno)
*/

int iphb_get_fd(iphb_t iphbh);





/** iphbd statistics
   - unsigned int clients: number of active IPHB clients
   - unsigned int waiting: number of IPHB clients that are waiting for heartbeat
   - unsigned int next_hb: number of seconds after the next heartbeat shall occur, 0 if there are nobody waiting 
*/

struct iphb_stats {
  unsigned int     clients;
  unsigned int     waiting;
  unsigned int     next_hb;
};


/**
   Get statistics. Struct iphb_stats is filled as follows:<br>
   - unsigned int clients: number of active IPHB clients
   - unsigned int waiting: number of IPHB clients that are waiting for heartbeat
   - unsigned int next_hb: number of seconds after the next heartbeat shall occur, 0 if there are nobody waiting 


   @param iphbh	Handle got from iphb_open
   @param stats Statistics placeholder (filled when success)

   @return	0 if OK, -1 if error (check errno)
*/

int iphb_get_stats(iphb_t iphbh, struct iphb_stats *stats);





/**
   Close iphb service.

   @param iphbh	Handle got from iphb_subscribe

   @return	NULL always (so it is nice to set local handle to NULL)
*/
iphb_t iphb_close(iphb_t iphbh);



#endif  /* IPHB_H */