| 6 |
* Copyright (C) 2004-2025 Leaflet <leaflet@leafok.com> |
* Copyright (C) 2004-2025 Leaflet <leaflet@leafok.com> |
| 7 |
*/ |
*/ |
| 8 |
|
|
| 9 |
|
#ifdef HAVE_CONFIG_H |
| 10 |
|
#include "config.h" |
| 11 |
|
#endif |
| 12 |
|
|
| 13 |
#include "article_cache.h" |
#include "article_cache.h" |
| 14 |
#include "article_favor_display.h" |
#include "article_favor_display.h" |
| 15 |
#include "article_view_log.h" |
#include "article_view_log.h" |
| 16 |
#include "bbs.h" |
#include "bbs.h" |
| 17 |
#include "bbs_cmd.h" |
#include "bbs_cmd.h" |
| 18 |
|
#include "bbs_net.h" |
| 19 |
|
#include "chicken.h" |
| 20 |
#include "common.h" |
#include "common.h" |
| 21 |
#include "io.h" |
#include "io.h" |
| 22 |
#include "log.h" |
#include "log.h" |
| 70 |
c++; |
c++; |
| 71 |
} |
} |
| 72 |
|
|
| 73 |
|
#ifdef _ENABLE_SHARED |
| 74 |
hdll = dlopen(s + 5, RTLD_LAZY); |
hdll = dlopen(s + 5, RTLD_LAZY); |
| 75 |
|
|
| 76 |
if (hdll) |
if (hdll) |
| 96 |
prints("失败原因:%s\r\n", dlerror()); |
prints("失败原因:%s\r\n", dlerror()); |
| 97 |
press_any_key(); |
press_any_key(); |
| 98 |
} |
} |
| 99 |
|
#else |
| 100 |
|
(void)hdll; |
| 101 |
|
(void)func; |
| 102 |
|
|
| 103 |
|
if (strcasecmp(c, "bbs_net") == 0) |
| 104 |
|
{ |
| 105 |
|
bbs_net(); |
| 106 |
|
} |
| 107 |
|
else if (strcasecmp(c, "chicken_main") == 0) |
| 108 |
|
{ |
| 109 |
|
chicken_main(); |
| 110 |
|
} |
| 111 |
|
else |
| 112 |
|
{ |
| 113 |
|
clearscr(); |
| 114 |
|
prints("未知入口 [%s] !!\r\n", c); |
| 115 |
|
press_any_key(); |
| 116 |
|
} |
| 117 |
|
#endif |
| 118 |
} |
} |
| 119 |
|
|
| 120 |
return REDRAW; |
return REDRAW; |
| 275 |
{ |
{ |
| 276 |
static int show_top10 = 0; |
static int show_top10 = 0; |
| 277 |
int ch = 0; |
int ch = 0; |
| 278 |
|
int loop; |
| 279 |
|
|
| 280 |
if (show_top10) |
if (show_top10) |
| 281 |
{ |
{ |
| 289 |
|
|
| 290 |
if (display_menu(&top10_menu) == 0) |
if (display_menu(&top10_menu) == 0) |
| 291 |
{ |
{ |
| 292 |
while (!SYS_server_exit) |
for (loop = 1; !SYS_server_exit && loop;) |
| 293 |
{ |
{ |
| 294 |
iflush(); |
iflush(); |
| 295 |
ch = igetch(100); |
ch = igetch(100); |
| 303 |
{ |
{ |
| 304 |
case KEY_NULL: // broken pipe |
case KEY_NULL: // broken pipe |
| 305 |
log_error("KEY_NULL\n"); |
log_error("KEY_NULL\n"); |
| 306 |
show_top10 = 0; |
loop = 0; |
| 307 |
return 0; |
break; |
| 308 |
case KEY_TIMEOUT: |
case KEY_TIMEOUT: |
| 309 |
if (time(NULL) - BBS_last_access_tm >= BBS_max_user_idle_time) |
if (time(NULL) - BBS_last_access_tm >= BBS_max_user_idle_time) |
| 310 |
{ |
{ |
| 311 |
log_error("User input timeout\n"); |
log_error("User input timeout\n"); |
| 312 |
show_top10 = 0; |
loop = 0; |
| 313 |
return 0; |
break; |
| 314 |
} |
} |
| 315 |
continue; |
continue; |
| 316 |
case CR: |
case CR: |
| 318 |
switch (menu_control(&top10_menu, ch)) |
switch (menu_control(&top10_menu, ch)) |
| 319 |
{ |
{ |
| 320 |
case EXITMENU: |
case EXITMENU: |
| 321 |
ch = EXITMENU; |
loop = 0; |
| 322 |
break; |
break; |
| 323 |
case REDRAW: |
case REDRAW: |
| 324 |
clearscr(); |
clearscr(); |
| 331 |
break; |
break; |
| 332 |
} |
} |
| 333 |
} |
} |
|
|
|
|
if (ch == EXITMENU) |
|
|
{ |
|
|
break; |
|
|
} |
|
| 334 |
} |
} |
| 335 |
} |
} |
| 336 |
|
|
| 398 |
} |
} |
| 399 |
|
|
| 400 |
return REDRAW; |
return REDRAW; |
| 401 |
|
} |
| 402 |
|
|
| 403 |
|
int edit_sign(void *param) |
| 404 |
|
{ |
| 405 |
|
if (user_sign_edit(BBS_priv.uid) < 0) |
| 406 |
|
{ |
| 407 |
|
log_error("user_sign_edit(%d) error\n", BBS_priv.uid); |
| 408 |
|
} |
| 409 |
|
|
| 410 |
|
return REDRAW; |
| 411 |
} |
} |