Skip to content
Snippets Groups Projects
Commit b25e89d2 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Add make_newsgroup_name()

parent ccab84c3
No related branches found
No related tags found
No related merge requests found
......@@ -762,3 +762,33 @@ char* separate_thousands(const char* src, char *dest, size_t maxlen, char sep)
strcpy(d, tail);
return dest;
}
// Update 'str' to conform with RFC 5536 requirements of a newsgroup name
char* make_newsgroup_name(char* str)
{
/*
* From RFC5536:
* newsgroup-name = component *( "." component )
* component = 1*component-char
* component-char = ALPHA / DIGIT / "+" / "-" / "_"
*/
if (str[0] == '.')
str[0] = '_';
size_t c;
for(c = 0; str[c] != 0; c++) {
/* Legal characters */
if ((str[c] >= 'A' && str[c] <= 'Z')
|| (str[c] >= 'a' && str[c] <= 'z')
|| (str[c] >= '0' && str[c] <= '9')
|| str[c] == '+'
|| str[c] == '-'
|| str[c] == '_'
|| str[c] == '.')
continue;
str[c] = '_';
}
c--;
if (str[c] == '.')
str[c] = '_';
return str;
}
......@@ -66,6 +66,7 @@ DLLEXPORT bool str_has_ctrl(const char*);
DLLEXPORT bool str_is_ascii(const char*);
DLLEXPORT char * utf8_to_cp437_inplace(char* str);
DLLEXPORT char * separate_thousands(const char* src, char *dest, size_t maxlen, char sep);
DLLEXPORT char * make_newsgroup_name(char* str);
#ifdef __cplusplus
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment