bnetd.c
上传用户:tany51
上传日期:2013-06-12
资源大小:1397k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /*
  2.  * Copyright (C) 2000,2001 Onlyer (onlyer@263.net)
  3.  *
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  */
  18. #include "common/setup_before.h"
  19. #include "setup.h"
  20. #ifdef HAVE_STDDEF_H
  21. # include <stddef.h>
  22. #else
  23. # ifndef NULL
  24. #  define NULL ((void *)0)
  25. # endif
  26. #endif
  27. #ifdef TIME_WITH_SYS_TIME
  28. # include <time.h>
  29. # include <sys/time.h>
  30. #else
  31. # ifdef HAVE_SYS_TIME_H
  32. #  include <sys/time.h>
  33. # else
  34. #  include <time.h>
  35. # endif
  36. #endif
  37. #include "bnetd.h"
  38. #include "prefs.h"
  39. #include "s2s.h"
  40. #include "handle_bnetd.h"
  41. #include "connection.h"
  42. #include "common/eventlog.h"
  43. #include "common/setup_after.h"
  44. static t_connection * bnetd_connection=NULL;
  45. extern int bnetd_init(void)
  46. {
  47. return bnetd_check();
  48. }
  49. extern int bnetd_check(void)
  50. {
  51. static unsigned int prev_connecting_checktime=0;
  52. if (bnetd_connection) {
  53. if (d2cs_conn_get_state(bnetd_connection)==conn_state_connecting) {
  54. if (time(NULL) - prev_connecting_checktime > prefs_get_s2s_timeout()) {
  55. eventlog(eventlog_level_warn,__FUNCTION__,"connection to bnetd s2s timeout");
  56. d2cs_conn_set_state(bnetd_connection,conn_state_destroy);
  57. return -1;
  58. }
  59. }
  60. return 0;
  61. }
  62. if (!(bnetd_connection=s2s_create(prefs_get_bnetdaddr(),BNETD_SERV_PORT,conn_class_bnetd))) {
  63. return -1;
  64. }
  65. if (d2cs_conn_get_state(bnetd_connection)==conn_state_init) {
  66. handle_bnetd_init(bnetd_connection);
  67. } else {
  68. prev_connecting_checktime=time(NULL);
  69. }
  70. return 0;
  71. }
  72. extern t_connection * bnetd_conn(void)
  73. {
  74. return bnetd_connection;
  75. }
  76. extern int bnetd_set_connection(t_connection * c)
  77. {
  78. bnetd_connection=c;
  79. return 0;
  80. }
  81. extern int bnetd_destroy(t_connection * c)
  82. {
  83. if (bnetd_connection != c) {
  84. eventlog(eventlog_level_error,__FUNCTION__,"bnetd connection do not match");
  85. return -1;
  86. }
  87. bnetd_connection=NULL;
  88. return 0;
  89. }