blacklist.c

来自「GSM猫管理程序」· C语言 代码 · 共 72 行

C
72
字号
/*SMS Server Tools 3Copyright (C) Keijo Kasvihttp://smstools3.kekekasvi.com/Based on SMS Server Tools 2 from Stefan Fringshttp://www.meinemullemaus.de/This program is free software unless you got it under another license directlyfrom the author. You can redistribute it and/or modify it under the terms ofthe GNU General Public License as published by the Free Software Foundation.Either version 2 of the License, or (at your option) any later version.*/#include <syslog.h>#include <stdio.h>#include <stdlib.h>#include <string.h>#include <signal.h>#include "blacklist.h"#include "extras.h"#include "logging.h"#include "alarm.h"#include "smsd_cfg.h"int inblacklist(char* msisdn){  FILE* file;  char line[256];  char* posi;  if (blacklist[0]) // is a blacklist file specified?  {    file=fopen(blacklist,"r");    if (file)    {      while (fgets(line,sizeof(line),file))      {        posi=strchr(line,'#');     // remove comment        if (posi)          *posi=0;        cutspaces(line);	if (strlen(line)>0)        {          if (strncmp(msisdn,line,strlen(line))==0)	  {	    fclose(file);            return 1;    	  }            else if (msisdn[0]=='s' && strncmp(msisdn+1,line,strlen(line))==0)          {            fclose(file);            return 1;	  }        }      }        fclose(file);    }      else    {      writelogfile0(LOG_CRIT,"smsd", tb_sprintf("Stopping. Cannot read blacklist file %s.", blacklist));      alarm_handler0(LOG_CRIT,"smsd", tb);      //remove_pid(pidfile);      //signal(SIGTERM,SIG_IGN);      //kill(0,SIGTERM);      //exit(127);      abnormal_termination(1);    }  }        return 0;}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?