Skip to content

Commit

Permalink
core: remove old and not working function, deactivated with an #ifdef…
Browse files Browse the repository at this point in the history
… since 2003
  • Loading branch information
henningw committed Oct 7, 2018
1 parent aae3dce commit a9a47c2
Showing 1 changed file with 0 additions and 71 deletions.
71 changes: 0 additions & 71 deletions src/core/flags.c
Expand Up @@ -249,77 +249,6 @@ int register_flag(char* name, int pos)



#ifdef _GET_AWAY

/* wrapping functions for flag processing */
static int fixup_t_flag(void** param, int param_no)
{
unsigned int *code;
char *c;
int token;

LM_DBG("fixing flag: %s\n", (char *) (*param));

if (param_no!=1) {
LM_ERR("TM module: only parameter #1 for flags can be fixed\n");
return E_BUG;
};

if ( !(code =pkg_malloc( sizeof( unsigned int) )) ) return E_OUT_OF_MEM;

*code = 0;
c = *param;
while ( *c && (*c==' ' || *c=='\t')) c++; /* initial whitespaces */

token=1;
if (strcasecmp(c, "white")==0) *code=FL_WHITE;
else if (strcasecmp(c, "yellow")==0) *code=FL_YELLOW;
else if (strcasecmp(c, "green")==0) *code=FL_GREEN;
else if (strcasecmp(c, "red")==0) *code=FL_RED;
else if (strcasecmp(c, "blue")==0) *code=FL_BLUE;
else if (strcasecmp(c, "magenta")==0) *code=FL_MAGENTA;
else if (strcasecmp(c, "brown")==0) *code=FL_BROWN;
else if (strcasecmp(c, "black")==0) *code=FL_BLACK;
else if (strcasecmp(c, "acc")==0) *code=FL_ACC;
else {
token=0;
while ( *c && *c>='0' && *c<='9' ) {
*code = *code*10+ *c-'0';
if (*code > (sizeof( flag_t ) * CHAR_BIT - 1 )) {
LM_ERR("TM module: too big flag number: %s; MAX=%d\n",
(char *) (*param), sizeof( flag_t ) * CHAR_BIT - 1 );
goto error;
}
c++;
}
}
while ( *c && (*c==' ' || *c=='\t')) c++; /* terminating whitespaces */

if ( *code == 0 ) {
LM_ERR("TM module: bad flag number: %s\n", (char *) (*param));
goto error;
}

if (*code < FL_MAX && token==0) {
LM_ERR("TM module: too high flag number: %s (%d)\n; lower number"
" below %d reserved\n", (char *) (*param), *code, FL_MAX );
goto error;
}

/* free string */
pkg_free( *param );
/* fix now */
*param = code;

return 0;

error:
pkg_free( code );
return E_CFG;
}

#endif

/**
*
*/
Expand Down

0 comments on commit a9a47c2

Please sign in to comment.