- 论坛徽章:
- 2
|
部分代码:
int init_daemon()
{
pid_t pid;
int i, j = 0;
pid=fork();
if(pid<0)
{
printf("error in fork\n");
exit(1);
}else if(pid>0)
exit(0);
setsid();
for(i=0;i< 3 ;++i) /* close STDOUT, STDIN, STDERR, */
close(i);
umask(0);
return 0;
}
int main()
{
char ems_msg[1024];
int ret;
char smscomment[128];
API_PARA param;
memset(¶m,0,sizeof(API_PARA));
setParam(param);
ret = SetKey("111111111111");
if(init_daemon() == -1){
printf("can't fork self\n");
exit(0);
}
char filepath[255];
char comment[255];
sprintf(filepath, "/opt/server/project/pms5/src/smstemplate_ansi");
FILE *fp;
if( ( fp = fopen( filepath, "r" ) ) == NULL ){
return -1;
}
fgets( comment, 254, fp );
fclose(fp);
while(1)
{
DIR *dp;
struct dirent *dirp;
char searchDir[256];
char filename[255];
char telNo[40];
char from[40];
char smsComment[512];
sprintf( searchDir, "%s", "/datappurio30/smssendbox/inbox_noti/newsms/" );
dp = opendir(searchDir );
while ( (dirp = readdir (dp)) != NULL )
{
sprintf(filename , "/datappurio30/smssendbox/inbox_noti/newsms/%s", dirp->d_name);
if( get_readfile( filename, ems_msg ) < 0 ){
continue;
}
if( ret = GetKeyValue( ems_msg, "TELNO::=", telNo ) < 0 ) continue;
if( ret = GetKeyValue( ems_msg, "TELERNO::=", from ) < 0 ) continue;
sprintf(smsComment, comment, from);
ret = SendSMS( param.sn, telNo, smsComment, param.priority );
}
sleep(10);
}
return 1;
} |
|