⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 newsfetch.c

📁 linux下的BBS
💻 C
字号:
/* *  news fetch write by rexchen@ug.ee.tku.edu.tw */#include "nntp.h"intnews_fetch (userid, passwd, host, port, conf_dir, active, logfd, hispath,  flag)char *userid;char *passwd;char *host;int port;char *conf_dir;char *active;int logfd;char *hispath;int flag;{  struct nntp_opt options;  strncpy (options.userid, userid, IDLEN);  strncpy (options.passwd, passwd, PASSLEN);  strncpy (options.host, host, HOSTLEN);  strncpy (options.conf_dir, conf_dir, PATHLEN);  sprintf (options.active, "%s/%s", conf_dir, active);  options.port = port;  options.flag = flag;  options.logfd = logfd;  if (!dashf (hispath)) {    makedbz (hispath, HISTORY_SIZE);  }  if ((options.history = fopen (hispath, "a+")) >= 0) {    dbminit (hispath);    nntp (&options);    dbmclose ();  }  fclose (options.history);  mkhistory (hispath);}main (){  int logfd;  int server_num = 0;  int i = 0;  char hispath[PATHLEN] = HISTORY_FILE;  char spath[PATHLEN] = { 0 };  struct server *s_list = NULL;  sprintf (spath, "%s/%s", CONF_DIR, CONF_SERVER_FILE);  server_num = line_count (spath);  if (server_num < 1) {    printf ("no server define in server.conf\n");    exit (0);  }  s_list = calloc (sizeof (struct server), server_num);  read_server_conf (spath, s_list, server_num);  logfd = log_open ("nntp.log");  for (i = 0; i < server_num; i++) {    news_fetch (s_list[i].userid, s_list[i].passwd, s_list[i].host,      s_list[i].port, CONF_DIR, s_list[i].active, logfd, hispath, NNTP_GET);  }  log_close (logfd);  (void *) s_list = xfree (s_list);}

⌨️ 快捷键说明

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