* add StrBufPook which blobs out a sub-part of the string
[citadel.git] / libcitadel / lib / libcitadel.h
1 /*
2  * $Id$
3  *
4  */
5
6
7 /* protect against double includes */
8 #ifndef LIBCITADEL_H
9 #define LIBCITADEL_H
10
11
12 /*
13  * since we reference time_t...
14  */
15 #include <time.h>
16 #include <stdlib.h>
17 #include <stdarg.h>
18 #define LIBCITADEL_VERSION_NUMBER       770
19
20 /*
21  * Here's a bunch of stupid magic to make the MIME parser portable.
22  */
23 #ifndef SIZ
24 #define SIZ     4096
25 #endif
26
27
28 /* Logging levels - correspond to syslog(3) */
29 enum LogLevel {
30         /* When about to exit the server for an unrecoverable error */
31          CTDL_EMERG,    /* system is unusable */
32         /* Manual intervention is required to avoid an abnormal exit */
33          CTDL_ALERT,    /* action must be taken immediately */
34         /* The server can continue to run with degraded functionality */
35          CTDL_CRIT,     /* critical conditions */
36         /* An error occurs but the server continues to run normally */
37          CTDL_ERR,      /* error conditions */
38         /* An abnormal condition was detected; server will continue normally */
39          CTDL_WARNING,  /* warning conditions */
40         /* Normal messages (login/out, activity, etc.) */
41          CTDL_NOTICE,   /* normal but significant condition */
42         /* Unimportant progress messages, etc. */
43          CTDL_INFO,     /* informational */
44         /* Debugging messages */
45          CTDL_DEBUG     /* debug-level messages */
46 };
47
48 typedef enum AXLevel {
49         AxDeleted = 0,
50         AxNewU = 1,
51         AxProbU = 2,
52         AxLocU = 3,
53         AxNetU = 4,
54         AxPrefU = 5,
55         AxAideU = 6
56 }eUsrAxlvl;
57
58 enum RoomNetCfg {
59         subpending,
60         unsubpending,
61         lastsent, /* Server internal use only */
62         ignet_push_share,
63         listrecp,
64         digestrecp,
65         pop3client,
66         rssclient,
67         participate,
68         maxRoomNetCfg
69 };
70
71
72 typedef enum __GPEXWhichPolicy {
73         roompolicy,
74         floorpolicy,
75         sitepolicy,
76         mailboxespolicy,
77         maxpolicy
78 }GPEXWhichPolicy;
79
80 /*
81  * View definitions.
82  * Note that not all views are implemented in all clients.
83  */
84 #define VIEW_BBS                0       /* Bulletin board view */
85 #define VIEW_MAILBOX            1       /* Mailbox summary */
86 #define VIEW_ADDRESSBOOK        2       /* Address book view */
87 #define VIEW_CALENDAR           3       /* Calendar view */
88 #define VIEW_TASKS              4       /* Tasks view */
89 #define VIEW_NOTES              5       /* Notes view */
90 #define VIEW_WIKI               6       /* Wiki view */
91 #define VIEW_CALBRIEF           7       /* Brief Calendar view */
92 #define VIEW_JOURNAL            8       /* Journal view */
93 #define VIEW_BLOG               9       /* Blog view (not yet implemented) */
94
95
96 #ifndef IsEmptyStr
97 #define IsEmptyStr(a) ((a)[0] == '\0')
98 #endif
99
100
101 /*
102  * another word to indicate n/a for a pointer if NULL already has a "meaning"
103  */
104 extern const char *StrBufNOTNULL;
105
106 /*
107  * Misc declarations
108  */
109
110 char *libcitadel_version_string(void);
111 int libcitadel_version_number(void);
112 void StartLibCitadel(size_t basesize);
113 void ShutDownLibCitadel(void);
114
115 /*
116  * MIME parser declarations
117  */
118
119 void extract_key(char *target, char *source, long sourcelen, char *key, long keylen, char KeyEnd);
120
121 void mime_parser(char *content_start, char *content_end,
122                 void (*CallBack)
123                         (char *cbname,
124                         char *cbfilename,
125                         char *cbpartnum,
126                         char *cbdisp,
127                         void *cbcontent,
128                         char *cbtype,
129                         char *cbcharset,
130                         size_t cblength,
131                         char *cbencoding,
132                         char *cbid,
133                         void *cbuserdata),
134                 void (*PreMultiPartCallBack)
135                         (char *cbname,
136                         char *cbfilename,
137                         char *cbpartnum,
138                         char *cbdisp,
139                         void *cbcontent,
140                         char *cbtype,
141                         char *cbcharset,
142                         size_t cblength,
143                         char *cbencoding,
144                         char *cbid,
145                         void *cbuserdata),
146                 void (*PostMultiPartCallBack)
147                         (char *cbname,
148                         char *cbfilename,
149                         char *cbpartnum,
150                         char *cbdisp,
151                         void *cbcontent,
152                         char *cbtype,
153                         char *cbcharset,
154                         size_t cblength,
155                         char *cbencoding,
156                         char *cbid,
157                         void *cbuserdata),
158                 void *userdata,
159                 int dont_decode
160 );
161
162
163
164 char *fixed_partnum(char *);
165 void mime_decode(char *partnum,
166                  char *part_start, size_t length,
167                  char *content_type, char *charset, char *encoding,
168                  char *disposition,
169                  char *id,
170                  char *name, char *filename,
171                  void (*CallBack)
172                   (char *cbname,
173                    char *cbfilename,
174                    char *cbpartnum,
175                    char *cbdisp,
176                    void *cbcontent,
177                    char *cbtype,
178                    char *cbcharset,
179                    size_t cblength,
180                    char *cbencoding,
181                    char *cbid,
182                    void *cbuserdata),
183                  void (*PreMultiPartCallBack)
184                   (char *cbname,
185                    char *cbfilename,
186                    char *cbpartnum,
187                    char *cbdisp,
188                    void *cbcontent,
189                    char *cbtype,
190                    char *cbcharset,
191                    size_t cblength,
192                    char *cbencoding,
193                    char *cbid,
194                    void *cbuserdata),
195                  void (*PostMultiPartCallBack)
196                   (char *cbname,
197                    char *cbfilename,
198                    char *cbpartnum,
199                    char *cbdisp,
200                    void *cbcontent,
201                    char *cbtype,
202                    char *cbcharset,
203                    size_t cblength,
204                    char *cbencoding,
205                    char *cbid,
206                    void *cbuserdata),
207                   void *userdata,
208                   int dont_decode
209 );
210 void the_mime_parser(char *partnum,
211                      char *content_start, char *content_end,
212                      void (*CallBack)
213                       (char *cbname,
214                        char *cbfilename,
215                        char *cbpartnum,
216                        char *cbdisp,
217                        void *cbcontent,
218                        char *cbtype,
219                        char *cbcharset,
220                        size_t cblength,
221                        char *cbencoding,
222                        char *cbid,
223                        void *cbuserdata),
224                      void (*PreMultiPartCallBack)
225                       (char *cbname,
226                        char *cbfilename,
227                        char *cbpartnum,
228                        char *cbdisp,
229                        void *cbcontent,
230                        char *cbtype,
231                        char *cbcharset,
232                        size_t cblength,
233                        char *cbencoding,
234                        char *cbid,
235                        void *cbuserdata),
236                      void (*PostMultiPartCallBack)
237                       (char *cbname,
238                        char *cbfilename,
239                        char *cbpartnum,
240                        char *cbdisp,
241                        void *cbcontent,
242                        char *cbtype,
243                        char *cbcharset,
244                        size_t cblength,
245                        char *cbencoding,
246                        char *cbid,
247                        void *cbuserdata),
248                       void *userdata,
249                       int dont_decode
250 );
251
252 typedef struct StrBuf StrBuf;
253
254 #define strof(a) #a
255 #define CStrOf(a) #a, sizeof(#a) - 1
256 typedef struct _ConstStr {
257         const char *Key;
258         long len;
259 }ConstStr;
260 #define CKEY(a) (a).Key, (a).len
261
262 StrBuf* NewStrBuf(void);
263 StrBuf* NewStrBufDup(const StrBuf *CopyMe);
264 StrBuf* NewStrBufPlain(const char* ptr, int nChars);
265 long StrBufShrinkToFit(StrBuf *Buf, int Force);
266 void ReAdjustEmptyBuf(StrBuf *Buf, long ThreshHold, long NewSize);
267
268 int StrBufPlain(StrBuf *Buf, const char* ptr, int nChars);
269 StrBuf* _NewConstStrBuf(const char* StringConstant, size_t SizeOfStrConstant);
270 #define NewConstStrBuf(a) _NewConstStrBuf(a, sizeof(a))
271 void FreeStrBuf (StrBuf **FreeMe);
272 char *SmashStrBuf (StrBuf **SmashMe);
273 void HFreeStrBuf (void *VFreeMe);
274 int FlushStrBuf(StrBuf *buf);
275 int FLUSHStrBuf(StrBuf *buf); /* expensive but doesn't leave content behind for others to find in case of errors */
276
277 const char *ChrPtr(const StrBuf *Str);
278 int StrLength(const StrBuf *Str);
279 #define SKEY(a) ChrPtr(a), StrLength(a)
280 long StrBufPeek(StrBuf *Buf, const char* ptr, long nThChar, char PeekValue);
281 long StrBufPook(StrBuf *Buf, const char* ptr, long nThChar, long nChars, char PookValue);
282
283 int StrBufTCP_read_line(StrBuf *buf, int *fd, int append, const char **Error);
284 int StrBufReadBLOB(StrBuf *Buf, int *fd, int append, long nBytes, const char **Error);
285 #define NNN_TERM 1
286 #define O_TERM 0
287 int StrBufReadBLOBBuffered(StrBuf *Buf, 
288                            StrBuf *IOBuf, 
289                            const char **BufPos,
290                            int *fd, 
291                            int append, 
292                            long nBytes, 
293                            int check, 
294                            const char **Error);
295 int StrBufTCP_read_buffered_line(StrBuf *Line, 
296                                  StrBuf *buf, 
297                                  int *fd, 
298                                  int timeout, 
299                                  int selectresolution, 
300                                  const char **Error);
301 int StrBufTCP_read_buffered_line_fast(StrBuf *Line, 
302                                       StrBuf *buf, 
303                                       const char **Pos,
304                                       int *fd, 
305                                       int timeout, 
306                                       int selectresolution, 
307                                       const char **Error);
308
309 int StrBufSipLine(StrBuf *LineBuf, StrBuf *Buf, const char **Ptr);
310 int StrBufReplaceToken(StrBuf *Buf, long where, long HowLong, const char *Repl, long ReplLen);
311 int StrBufExtract_token(StrBuf *dest, const StrBuf *Source, int parmnum, char separator);
312 int StrBufSub(StrBuf *dest, const StrBuf *Source, unsigned long Offset, size_t nChars);
313
314 unsigned long StrBufExtract_unsigned_long(const StrBuf* Source, int parmnum, char separator);
315 long StrBufExtract_long(const StrBuf* Source, int parmnum, char separator);
316 int StrBufExtract_int(const StrBuf* Source, int parmnum, char separator);
317 int StrBufNum_tokens(const StrBuf *source, char tok);
318 int StrBufRemove_token(StrBuf *Source, int parmnum, char separator);
319
320 int StrBufHaveNextToken(const StrBuf *Source, const char **pStart);
321 int StrBufExtract_NextToken(StrBuf *dest, const StrBuf *Source, const char **pStart, char separator);
322 int StrBufSkip_NTokenS(const StrBuf *Source, const char **pStart, char separator, int nTokens);
323 unsigned long StrBufExtractNext_unsigned_long(const StrBuf* Source, const char **pStart, char separator);
324 long StrBufExtractNext_long(const StrBuf* Source, const char **pStart, char separator);
325 int StrBufExtractNext_int(const StrBuf* Source, const char **pStart, char separator);
326
327
328 void StrBufAppendBufPlain(StrBuf *Buf, const char *AppendBuf, long AppendSize, unsigned long Offset);
329 void StrBufAppendBuf(StrBuf *Buf, const StrBuf *AppendBuf, unsigned long Offset);
330 size_t CurlFillStrBuf_callback(void *ptr, size_t size, size_t nmemb, void *stream);
331 void StrBufAppendPrintf(StrBuf *Buf, const char *format, ...);
332 #ifdef SHOW_ME_VAPPEND_PRINTF
333 /* so owe don't create an include depndency, this is just visible on demand. */
334 void StrBufVAppendPrintf(StrBuf *Buf, const char *format, va_list ap);
335 #endif
336 void StrBufPrintf(StrBuf *Buf, const char *format, ...) __attribute__((__format__(__printf__,2,3)));
337 void StrBufCutLeft(StrBuf *Buf, int nChars);
338 void StrBufCutRight(StrBuf *Buf, int nChars);
339 void StrBufCutAt(StrBuf *Buf, int AfternChars, const char *At);
340 void StrBufTrim(StrBuf *Buf);
341 void StrBufStripAllBut(StrBuf *Buf, char leftboundary, char rightboundary);
342 void StrBufUpCase(StrBuf *Buf);
343 void StrBufLowerCase(StrBuf *Buf);
344 void StrBufStripSlashes(StrBuf *Dir, int RemoveTrailingSlash);
345 void StrBufEUid_unescapize(StrBuf *target, const StrBuf *source);
346 void StrBufEUid_escapize(StrBuf *target, const StrBuf *source);
347
348 void StrBufToUnixLF(StrBuf *buf);
349 void StrBufReplaceChars(StrBuf *buf, char search, char replace);
350
351 int CompressBuffer(StrBuf *Buf);
352 void StrBufConvert(StrBuf *ConvertBuf, StrBuf *TmpBuf, void *pic);
353 void ctdl_iconv_open(const char *tocode, const char *fromcode, void *pic);
354 void StrBuf_RFC822_to_Utf8(StrBuf *Target, const StrBuf *DecodeMe, const StrBuf* DefaultCharset, StrBuf *FoundCharset);
355 int StrBufDecodeBase64(StrBuf *Buf);
356 int StrBufDecodeHex(StrBuf *Buf);
357 int StrBufRFC2047encode(StrBuf **target, const StrBuf *source);
358 int StrBufSanitizeAscii(StrBuf *Buf, const char Mute);
359 #define LB                      (1)             /* Internal escape chars */
360 #define RB                      (2)
361 #define QU                      (3)
362 void StrBufUrlescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
363 void StrBufHexescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn);
364 long StrEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
365 long StrECMAEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
366 long StrHtmlEcmaEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks);
367 void StrMsgEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
368 void StrIcalEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn);
369
370 long StrTol(const StrBuf *Buf);
371 int StrToi(const StrBuf *Buf);
372 int StrBufIsNumber(const StrBuf *Buf);
373 long StrBuf_Utf8StrLen(StrBuf *Buf);
374 long StrBuf_Utf8StrCut(StrBuf *Buf, int maxlen);
375
376 const char *GuessMimeType(const char *data, size_t dlen);
377 const char* GuessMimeByFilename(const char *what, size_t len);
378
379 /* Run once at Programstart */
380 int LoadIconDir(const char *DirName);
381
382 /* Select the icon for a given MIME type */
383 const char *GetIconFilename(char *MimeType, size_t len);
384
385
386 /* tools */
387
388
389 int safestrncpy(char *dest, const char *src, size_t n);
390 int num_tokens (const char *source, char tok);
391 long extract_token(char *dest, const char *source, int parmnum, char separator, int maxlen);
392 long grab_token(char **dest, const char *source, int parmnum, char separator);
393 int extract_int (const char *source, int parmnum);
394 long extract_long (const char *source, int parmnum);
395 unsigned long extract_unsigned_long(const char *source, int parmnum);
396 void CtdlInitBase64Table(void);
397 size_t CtdlEncodeBase64(char *dest, const char *source, size_t sourcelen, int linebreaks);
398 int CtdlDecodeBase64(char *dest, const char *source, size_t length);
399 unsigned int decode_hex(char *Source);
400 int CtdlDecodeQuotedPrintable(char *decoded, char *encoded, int sourcelen);
401 void StripSlashes(char *Dir, int TrailingSlash);
402 size_t striplt(char *);
403 int haschar(const char *st, int ch);
404 void remove_token(char *source, int parmnum, char separator);
405 void fmt_date(char *buf, size_t n, time_t thetime, int seconds);
406 int is_msg_in_sequence_set(const char *mset, long msgnum);
407 const char *memreadline(const char *start, char *buf, int maxlen);
408 char *memreadlinelen(char *start, char *buf, int maxlen, int *retlen);
409 #define IsEmptyStr(a) ((a)[0] == '\0')
410 #define num_parms(source)               num_tokens(source,(char)'|')
411 int stripout(char *str, char leftboundary, char rightboundary);
412 void stripallbut(char *str, char leftboundary, char rightboundary);
413 char *myfgets(char *s, int size, FILE *stream);
414 void urlesc(char *outbuf, size_t oblen, char *strbuf);
415 char *CtdlTempFileName(char *prefix1, int prefix2);
416 FILE *CtdlTempFile(void);
417 void generate_uuid(char *buf);
418 const char *bmstrcasestr(const char *text, const char *pattern);
419 const char *bmstrcasestr_len(const char *text, size_t textlen, const char *pattern, size_t patlen);
420 void CtdlMakeTempFileName(char *name, int len);
421 char *rfc2047encode(char *line, long length);
422 int is_msg_in_mset(const char *mset, long msgnum);
423 int pattern2(char *search, char *patn);
424 void stripltlen(char *, int *);
425 char *html_to_ascii(char *inputmsg, int msglen, int screenwidth, int do_citaformat);
426 void LoadEntityList(char *FileName);
427
428
429
430 /* vCard stuff */
431
432 #define CTDL_VCARD_MAGIC        0xa1f9
433
434 /* This data structure represents a vCard object currently in memory. */
435 struct vCard {
436         int magic;
437         int numprops;
438         struct vCardProp {
439                 char *name;
440                 char *value;
441         } *prop;
442 };
443
444
445 struct vCard *vcard_new(void);
446 void vcard_add_prop(struct vCard *v, char *propname, char *propvalue);
447 struct vCard *vcard_load(char *vtext);
448 struct vCard *VCardLoad(StrBuf *vbtext);
449
450 void vcard_free(struct vCard *);
451 void vcard_set_prop(struct vCard *v, char *name, char *value, int append);
452 char *vcard_get_prop(struct vCard *v, char *propname, int is_partial,
453                         int instance, int return_propname);
454 char *vcard_serialize(struct vCard *);
455 void vcard_fn_to_n(char *vname, char *n, size_t vname_size);
456 void remove_charset_attribute(char *strbuf);
457 long StrBufUnescape(StrBuf *Buf, int StripBlanks);
458
459 /*
460  * Hash list implementation for Citadel
461  */
462 #define HKEY(a) a, (sizeof(a) - 1)
463
464 typedef struct HashList HashList;
465
466 typedef struct HashKey HashKey;
467
468 typedef struct HashPos HashPos;
469
470 typedef void (*DeleteHashDataFunc)(void * Data);
471 typedef const char *(*PrintHashContent)(void * Data);
472 typedef int (*CompareFunc)(const void* Item1, const void*Item2);
473 typedef int (*HashFunc)(const char *Str, long Len);
474 typedef void (*TransitionFunc) (void *Item1, void *Item2, int Odd);
475 typedef void (*PrintHashDataFunc) (const char *Key, void *Item, int Odd);
476
477 int Flathash(const char *str, long len);
478 #define IKEY(a) (const char*) &a, sizeof(a)
479
480 HashList *NewHash(int Uniq, HashFunc F);
481 void DeleteHash(HashList **Hash);
482 void HDeleteHash(void *vHash);
483 int GetHash(HashList *Hash, const char *HKey, long HKLen, void **Data);
484 void Put(HashList *Hash, const char *HKey, long HKLen, void *Data, DeleteHashDataFunc DeleteIt);
485 int GetKey(HashList *Hash, char *HKey, long HKLen, void **Data);
486 int GetHashKeys(HashList *Hash, char ***List);
487 int dbg_PrintHash(HashList *Hash, PrintHashContent first, PrintHashContent Second);
488 int PrintHash(HashList *Hash, TransitionFunc Trans, PrintHashDataFunc PrintEntry);
489 HashPos *GetNewHashPos(HashList *Hash, int StepWidth);
490 int GetHashPosFromKey(HashList *Hash, const char *HKey, long HKLen, HashPos *At);
491 int DeleteEntryFromHash(HashList *Hash, HashPos *At);
492 int GetHashPosCounter(HashList *Hash, HashPos *At);
493 void DeleteHashPos(HashPos **DelMe);
494 int GetNextHashPos(HashList *Hash, HashPos *At, long *HKLen, const char **HashKey, void **Data);
495 int GetHashAt(HashList *Hash,long At, long *HKLen, const char **HashKey, void **Data);
496 void SortByHashKey(HashList *Hash, int Order);
497 void SortByHashKeyStr(HashList *Hash);
498 int GetCount(HashList *Hash);
499 const void *GetSearchPayload(const void *HashVoid);
500 void SortByPayload(HashList *Hash, CompareFunc SortBy);
501 void generic_free_handler(void *ptr);
502 void reference_free_handler(void *ptr);
503 int HashLittle(const void *key, size_t length);
504
505
506 void convert_spaces_to_underscores(char *str);
507
508 /*
509  * Convert 4 bytes char into an Integer.
510  * usefull for easy inexpensive hashing 
511  * of for char strings.
512  */
513 #define CHAR4TO_INT(a) ((int) (a[0] | (a[1]<<8) | (a[2]<<16) | (a[3]<<24)))
514
515 /* vNote implementation */
516
517 #define CTDL_VNOTE_MAGIC        0xa1fa
518
519 struct vnote {
520         int magic;
521         char *uid;
522         char *summary;
523         char *body;
524         int pos_left;
525         int pos_top;
526         int pos_width;
527         int pos_height;
528         int color_red;
529         int color_green;
530         int color_blue;
531 };
532
533
534
535 struct vnote *vnote_new(void);
536 struct vnote *vnote_new_from_str(char *s);
537 void vnote_free(struct vnote *v);
538 char *vnote_serialize(struct vnote *v);
539 void vnote_serialize_output_field(char *append_to, char *field, char *label);
540
541
542
543
544 /*
545  * Create JSON style structures in C plus serialize them to one string
546  */
547
548 typedef struct JsonValue JsonValue;
549
550
551 void DeleteJSONValue(void *vJsonValue);
552
553 JsonValue *NewJsonObject(const char *Key, long keylen);
554
555 JsonValue *NewJsonArray(const char *Key, long keylen);
556
557 JsonValue *NewJsonNumber(const char *Key, long keylen, long Number);
558
559 JsonValue *NewJsonBigNumber(const char *Key, long keylen, double Number);
560
561 JsonValue *NewJsonString(const char *Key, long keylen, StrBuf *CopyMe);
562
563 JsonValue *NewJsonPlainString(const char *Key, long keylen, const char *CopyMe, long len);
564
565 JsonValue *NewJsonNull(const char *Key, long keylen);
566
567 JsonValue *NewJsonBool(const char *Key, long keylen, int value);
568
569 void JsonArrayAppend(JsonValue *Array, JsonValue *Val);
570
571 void JsonObjectAppend(JsonValue *Array, JsonValue *Val);
572
573 void SerializeJson(StrBuf *Target, JsonValue *Val, int FreeVal);
574
575
576
577 /*
578  * Citadels Wildfire implementation, see 
579  * http://www.firephp.org/Wiki/Reference/Protocol
580  * and http://wildfirehq.org/ for details
581  */
582 typedef void (*AddHeaderFunc)(const char *HdrName, const char *HdrValue);
583
584 typedef enum _WF_MessageType {
585         eLOG, 
586         eINFO,
587         eWARN,
588         eERROR,
589         eTRACE,
590         eEXCEPTION
591 } WF_MessageType;
592
593 JsonValue *WildFireException(const char *Filename, long FileLen,
594                              long LineNo,
595                              StrBuf *Message,
596                              int StackOffset);
597
598 void WildFireAddArray(JsonValue *ReportBase, JsonValue *Array, WF_MessageType Type);
599
600 JsonValue *WildFireMessagePlain(const char *Filename, long fnlen,
601                                    long LineNo,
602                                    const char *Message, long len, 
603                                    WF_MessageType Type);
604
605 JsonValue *WildFireMessage(const char *Filename, long fnlen,
606                            long lineno,
607                            StrBuf *Msg, 
608                            WF_MessageType Type);
609
610 void WildFireInitBacktrace(const char *argvNull, int AddBaseFrameSkip);
611
612 void WildFireSerializePayload(StrBuf *JsonBuffer, StrBuf *OutBuf, int *MsgCount, AddHeaderFunc AddHdr);
613
614 #define WF_MAJOR "1"
615 #define WF_STRUCTINDEX "1"
616 #define WF_SUB "1"
617
618
619 #endif  // LIBCITADEL_H