forked from dhilst/riemann-c-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
507 lines (376 loc) · 8.06 KB
/
ChangeLog
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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
commit 8e20c7a
Author: gkos <[email protected]>
Date: 2013-01-09
--enable-lock implemented.
It uses phtread recursive mutexes. Its initialized by
riemann_client_init. I have to drop RIEMANN_CLIENT_INIT, but
riemann_client_init does the exactly same job if --disable-lock is
passed.
A new odd header was included. riemann/_config.h this is the
autoconf generated header. I need it because contains the
RIEMANN_WITH_LOCK macro defined my configure. Another option is create
a riemann/client.h.in, but I'm lazy.
Since I have to drop RIEMANN_CLIENT_INIT this is API version 2 with no
backward compatibility.
clean.sh
configure.ac
m4/.gitignore
m4/ax_prefix_config_h.m4
src/Makefile.am
src/client.c
src/examples/exmp01.c
src/examples/exmp02.c
src/examples/exmp03.c
src/riemann/client.h
src/riemann/tcp.h
src/riemann/udp.h
src/tcp.c
src/udp.c
commit 5299215
Author: gkos <[email protected]>
Date: 2013-01-08
README.md updates
README.md
commit 13f15d5
Author: gkos <[email protected]>
Date: 2013-01-08
Build process improvements and fixes. Header fixes.
configure.ac
src/Makefile.am
src/client.c
src/event.c
src/examples/Makefile.am
src/examples/exmp01.c
src/examples/exmp02.c
src/examples/exmp03.c
src/riemann/client.h
src/riemann/event.h
src/riemann/message.h
src/riemann/query.h
commit 93e675c
Author: gkos <[email protected]>
Date: 2013-01-05
README.md update
README.md
commit dbdd393
Author: gkos <[email protected]>
Date: 2013-01-05
--with-protobuf-c-dir= option added to configure
README.md
clean.sh
configure.ac
src/Makefile.am
src/examples/Makefile.am
commit 2df752d
Author: gkos <[email protected]>
Date: 2013-01-05
empty m4 directory added, as dep for build.sh
m4/.gitignore
commit eaa4dbe
Author: Daniel Hilst <[email protected]>
Date: 2013-01-04
TODO list updated
README.md
commit a91ef13
Author: Daniel Hilst <[email protected]>
Date: 2013-01-03
README.md fixes
README.md
commit 925a200
Author: Daniel Hilst <[email protected]>
Date: 2013-01-03
README.md fixes
README.md
commit bd57de3
Author: Daniel Hilst <[email protected]>
Date: 2013-01-03
Switch to htonl and ntohl functions.
Fixes on configure.ac and Makefiles
README.md update
Tarball added
README.md
configure.ac
src/Makefile.am
src/client.c
src/message.c
commit e1fa299
Author: Daniel Hilst <[email protected]>
Date: 2013-01-03
Minor fixes on build process
clean.sh
src/Makefile.am
commit 7bb57c9
Author: Daniel Hilst <[email protected]>
Date: 2013-01-03
Versioning started, Makefile fixes and TODO list updated
Makefile.am
README.md
configure.ac
src/Makefile.am
commit fe20e30
Merge: 5218e43 cfeaf29
Author: gkos <[email protected]>
Date: 2013-01-02
Merge pull request #1 from lwf/master
Typo in Makefile.am
commit cfeaf29
Author: Torbjörn Norinder <[email protected]>
Date: 2013-01-01
Fix typo in Makefile.am
src/Makefile.am
commit 5218e43
Author: Daniel Hilst <[email protected]>
Date: 2012-12-29
UDP send implemented
README.md
configure.ac
src/client.c
src/examples/Makefile.am
src/examples/exmp03.c
src/message.c
src/riemann/client.h
src/riemann/message.h
src/riemann/udp.h
src/udp.c
commit c9b00db
Author: Daniel Hilst <[email protected]>
Date: 2012-12-29
README.md fix
README.md
commit d68cac7
Author: Daniel Hilst <[email protected]>
Date: 2012-12-29
Check for protoc-c on configure.ac. @TODO list update
README.md
configure.ac
commit 0483de5
Author: Daniel Hilst <[email protected]>
Date: 2012-12-29
README.md update
README.md
commit e44c5a4
Author: Daniel Hilst <[email protected]>
Date: 2012-12-29
README.md @TODO update
README.md
commit b70e82e
Author: Daniel Hilst <[email protected]>
Date: 2012-12-29
Ported to autotool
src/Makefile.am
src/examples/Makefile.am
commit 63bb3ef
Author: Daniel Hilst <[email protected]>
Date: 2012-12-29
build and clean scripts created
build.sh
clean.sh
commit 4a9c58a
Author: Daniel Hilst <[email protected]>
Date: 2012-12-29
Files added
AUTHORS
COPYING
ChangeLog
INSTALL
Makefile.am
NEWS
README
configure.ac
src/Makefile.am
src/examples/Makefile.am
commit 4f9b60c
Author: Daniel Hilst <[email protected]>
Date: 2012-12-29
First try
Makefile
src/Makefile
src/examples/Makefile
commit a38a630
Author: Daniel Hilst <[email protected]>
Date: 2012-12-28
proto.pb-c.* files moved to src/riemann
Makefile
src/Makefile
src/riemann/event.h
src/riemann/message.h
src/riemann/query.h
commit f0dee11
Author: Daniel Hilst <[email protected]>
Date: 2012-12-28
Example of error handling on connect
src/client.c
src/examples/exmp01.c
commit 217912e
Author: Daniel Hilst <[email protected]>
Date: 2012-12-28
New organization of files
.gitignore
Makefile
README.md
common.c
common.h
examples/Makefile
examples/query_events.c
examples/send_events.c
proto.proto
query.c
query.h
riemann_client.c
riemann_client.h
src/Makefile
src/client.c
src/common.c
src/event.c
src/examples/Makefile
src/examples/exmp01.c
src/examples/exmp02.c
src/message.c
src/proto.proto
src/query.c
src/riemann/client.h
src/riemann/common.h
src/riemann/event.h
src/riemann/message.h
src/riemann/query.h
src/riemann/tcp.h
src/riemann/udp.h
src/tcp.c
src/udp.c
tcp.c
tcp.h
commit cc3d3a9
Author: Daniel Hilst <[email protected]>
Date: 2012-12-28
Tcp and Query code implemented
.gitignore
Makefile
README.md
example.c
examples/Makefile
examples/query_events.c
examples/send_events.c
query.c
query.h
riemann_client.c
riemann_client.h
tcp.c
tcp.h
commit 4451a8a
Author: Daniel Hilst <[email protected]>
Date: 2012-12-27
TCP first implementations, UDP droped
Makefile
example.c
riemann_client.c
riemann_client.h
udp.c
udp.h
commit f43b510
Author: Daniel Hilst <[email protected]>
Date: 2012-12-27
Some fixes
Makefile
example.c
riemann_client.h
commit b8fa63a
Author: Daniel Hilst <[email protected]>
Date: 2012-12-27
README update
README.md
example.c
commit 9e8e32b
Author: Daniel Hilst <[email protected]>
Date: 2012-12-27
Bug fix, event attributes are freed now
example.c accepts arguments HOST and PORT
example.c
riemann_client.c
commit a5903ce
Author: Daniel Hilst <[email protected]>
Date: 2012-12-26
riemann_events_init fix
riemann_client.c
commit 7514913
Author: Daniel Hilst <[email protected]>
Date: 2012-12-25
Yet another README.mk fix, >:(
README.md
commit 7772d1e
Author: Daniel Hilst <[email protected]>
Date: 2012-12-25
Another fixes to README.mk
README.md
commit 7fdf5fe
Author: Daniel Hilst <[email protected]>
Date: 2012-12-25
README.mk fixed
README.md
commit 8d183d8
Author: Daniel Hilst <[email protected]>
Date: 2012-12-25
UDP client implemented
example.c updated with udp usage
README.mk improved
Makefile
README.md
common.h
example.c
riemann_client.c
riemann_client.h
udp.c
udp.h
commit b0673f5
Author: Daniel Hilst <[email protected]>
Date: 2012-12-24
Makefile modified to create a .so file
Makefile
README.md
riemann_client.c
commit 50b85e8
Author: Daniel Hilst <[email protected]>
Date: 2012-12-24
Almost all fields shown on example.c
example.c
commit 68b1cfc
Author: Daniel Hilst <[email protected]>
Date: 2012-12-24
Remaining riemann_event_set functions implemented
example.c
riemann_client.c
commit 916c765
Author: Daniel Hilst <[email protected]>
Date: 2012-12-24
malloc() fails forwarded to caller
riemann_events_free added
main.c moved to example.c
Makefile fix
Makefile
common.c
common.h
example.c
main.c
riemann_client.c
riemann_client.h
commit f473519
Author: Daniel Hilst <[email protected]>
Date: 2012-12-24
Todo list changed
README.md
commit a55ff84
Author: Daniel Hilst <[email protected]>
Date: 2012-12-24
First commit
Makefile
common.c
common.h
main.c
proto.proto
riemann_client.c
riemann_client.h
commit e7e1400
Author: gkos <[email protected]>
Date: 2012-12-24
Initial commit
.gitignore
README.md