X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=libcitadel%2Flib%2Flibcitadel.h;h=d0a24b4221832658f918564c027db56aef410d85;hb=0daf8cf6c657b725c2d53776ba766d632456a891;hp=d28e7662140d0bc2a975eafc5e6e7487a4862ca5;hpb=224f5aa99fdfc177f2f37e136b7fed9c68330fdc;p=citadel.git diff --git a/libcitadel/lib/libcitadel.h b/libcitadel/lib/libcitadel.h index d28e76621..d0a24b422 100644 --- a/libcitadel/lib/libcitadel.h +++ b/libcitadel/lib/libcitadel.h @@ -98,7 +98,9 @@ typedef enum _room_views { VIEW_JOURNAL = 8, /* Journal view */ VIEW_DRAFTS = 9, /* Drafts view */ VIEW_BLOG = 10, /* Blog view */ - VIEW_MAX + VIEW_QUEUE = 11, /* SMTP/... QUEUE rooms */ + VIEW_MAX, + VIEW_JSON_LIST, } ROOM_VIEWS; #define BLOG_EUIDBUF_SIZE 40 @@ -341,6 +343,7 @@ int StrBufSanitizeAscii(StrBuf *Buf, const char Mute); #define RB (2) #define QU (3) void StrBufUrlescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn); +void StrBufUrlescUPAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn); void StrBufHexescAppend(StrBuf *OutBuf, const StrBuf *In, const char *PlainIn); void StrBufHexEscAppend(StrBuf *OutBuf, const StrBuf *In, const unsigned char *PlainIn, long PlainInLen); long StrEscAppend(StrBuf *Target, const StrBuf *Source, const char *PlainIn, int nbsp, int nolinebreaks); @@ -368,6 +371,7 @@ const char *GetIconFilename(char *MimeType, size_t len); /* URL parsing & connection data */ typedef struct ParsedURL ParsedURL; struct ParsedURL { + int Priority; StrBuf *URL; StrBuf *UrlWithoutCred; StrBuf *CurlCreds;