/[LeafOK_CVS]/lbbs/src/common.c
ViewVC logotype

Diff of /lbbs/src/common.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

Revision 1.5 by sysadm, Sun Mar 20 17:37:14 2005 UTC Revision 1.16 by sysadm, Tue May 6 13:28:38 2025 UTC
# Line 1  Line 1 
1  /***************************************************************************  /***************************************************************************
2                            common.c  -  description                                                    common.c  -  description
3                               -------------------                                                           -------------------
4      begin                : Mon Oct 18 2004          Copyright            : (C) 2004-2025 by Leaflet
5      copyright            : (C) 2004 by Leaflet          Email                : leaflet@leafok.com
     email                : leaflet@leafok.com  
6   ***************************************************************************/   ***************************************************************************/
7    
8  /***************************************************************************  /***************************************************************************
9   *                                                                         *   *                                                                         *
10   *   This program is free software; you can redistribute it and/or modify  *   *   This program is free software; you can redistribute it and/or modify  *
11   *   it under the terms of the GNU General Public License as published by  *   *   it under the terms of the GNU General Public License as published by  *
12   *   the Free Software Foundation; either version 2 of the License, or     *   *   the Free Software Foundation; either version 3 of the License, or     *
13   *   (at your option) any later version.                                   *   *   (at your option) any later version.                                   *
14   *                                                                         *   *                                                                         *
15   ***************************************************************************/   ***************************************************************************/
16    
17    #include "common.h"
18    #include "log.h"
19    #include "menu.h"
20    #include <string.h>
21  #include <time.h>  #include <time.h>
22    #include <sys/types.h>
23    #include <sys/wait.h>
24    
25  //Version information  // Version information
26  char app_version[256] = "LBBS-devel version 1.0";  char app_version[256] = "LBBS-devel version 1.0";
27    
28  //Global declaration for enviroment  // Global declaration for sockets
 char app_home_dir[256];  
 char app_temp_dir[256];  
   
 //Global declaration for sockets  
29  int socket_server;  int socket_server;
30  int socket_client;  int socket_client;
31  char hostaddr_server[50];  char hostaddr_server[50];
# Line 32  char hostaddr_client[50]; Line 33  char hostaddr_client[50];
33  int port_server;  int port_server;
34  int port_client;  int port_client;
35    
36  //Global declaration for database  // Global declaration for system
37  char DB_host[256];  int SYS_exit;
38  char DB_username[50];  int SYS_child_process_count;
39  char DB_password[50];  
40  char DB_database[50];  // Common function
41    const char *str_space(char *string, int length)
42  //Common function  {
43  const char *          int i;
44  str_space (char *string, int length)          for (i = 0; i < length; i++)
45  {          {
46    int i;                  string[i] = ' ';
47    for (i = 0; i < length; i++)          }
48      {          string[length] = '\0';
49        string[i] = ' ';          return string;
50      }  }
51    string[length] = '\0';  
52    return string;  const char *get_time_str(char *s, size_t len)
53  }  {
54            time_t curtime = time(NULL);
55  const char *          struct tm *loctime;
56  get_time_str (char *string, size_t length)          loctime = localtime(&curtime);
57  {  
58    char week[10], buffer[256];          size_t j = strftime(s, len, "%Y年%m月%d日%H:%M:%S ", loctime);
59    time_t curtime;  
60    struct tm *loctime;          if (j == 0)
61            {
62    curtime = time (NULL);                  return NULL;
63    loctime = localtime (&curtime);          }
64    
65    strftime (buffer, 256, "%Y年%m月%d日%H:%M:%S ", loctime);          switch (loctime->tm_wday)
66            {
67    switch (loctime->tm_wday)          case 0:
68      {                  strncat(s, "星期天", len - j);
69      case 0:                  break;
70        strcpy (week, "星期天");          case 1:
71        break;                  strncat(s, "星期一", len - j);
72      case 1:                  break;
73        strcpy (week, "星期一");          case 2:
74        break;                  strncat(s, "星期二", len - j);
75      case 2:                  break;
76        strcpy (week, "星期二");          case 3:
77        break;                  strncat(s, "星期三", len - j);
78      case 3:                  break;
79        strcpy (week, "星期三");          case 4:
80        break;                  strncat(s, "星期四", len - j);
81      case 4:                  break;
82        strcpy (week, "星期四");          case 5:
83        break;                  strncat(s, "星期五", len - j);
84      case 5:                  break;
85        strcpy (week, "星期五");          case 6:
86        break;                  strncat(s, "星期六", len - j);
87      case 6:                  break;
88        strcpy (week, "星期六");          }
89        break;  
90      }          return s;
91    strcat (buffer, week);  }
92    
93    void reload_bbs_menu(int i)
94    {
95            if (reload_menu(&bbs_menu) < 0)
96            {
97                    log_error("Reload menu failed\n");
98            }
99            else
100            {
101                    log_std("Reload menu successfully\n");
102            }
103    }
104    
105    void system_exit(int i)
106    {
107            SYS_exit = 1;
108    }
109    
110    void child_exit(int i)
111    {
112            int pid;
113    
114            pid = wait(0);
115    
116            if (pid > 0)
117            {
118                    SYS_child_process_count--;
119                    log_std("Child process (%d) exited\n", pid);
120            }
121    }
122    
123    const char * ip_mask(char * s, int level, char mask)
124    {
125            char * p = s;
126    
127    strncpy (string, buffer, length);          if (level <= 0)
128            {
129                    return s;
130            }
131            if (level > 4)
132            {
133                    level = 4;
134            }
135    
136            for (int i = 0; i < 4 - level; i++)
137            {
138                    p = strchr(p, '.');
139                    if (p == NULL)
140                    {
141                            return s;
142                    }
143                    p++;
144            }
145    
146            for (int i = 0; i < level; i++)
147            {
148                    *p = mask;
149                    p++;
150                    if (i < level - 1)
151                    {
152                            *p = '.';
153                            p++;
154                    }
155            }
156            *p = '\0';
157    
158    return string;          return s;
159  }  }


Legend:
Removed lines/characters  
Changed lines/characters
  Added lines/characters

webmaster@leafok.com
ViewVC Help
Powered by ViewVC 1.3.0-beta1