util.h
上传用户:liguizhu
上传日期:2015-11-01
资源大小:2422k
文件大小:2k
源码类别:

P2P编程

开发平台:

Visual C++

  1. /*
  2.  *  Openmysee
  3.  *
  4.  *  This program is free software; you can redistribute it and/or modify
  5.  *  it under the terms of the GNU General Public License as published by
  6.  *  the Free Software Foundation; either version 2 of the License, or
  7.  *  (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.  */
  19.  
  20. #ifndef __UTIL_H_INCLUDED
  21. #define __UTIL_H_INCLUDED
  22. #include <stdio.h>
  23. #include <stdlib.h>
  24. #include <ctype.h>
  25. #include <sys/types.h>
  26. #include <sys/time.h>
  27. #include <sys/stat.h>
  28. #include <sys/wait.h>
  29. #include <sys/socket.h>
  30. #include <netinet/in.h>
  31. #include <arpa/inet.h>
  32. #include <netdb.h>
  33. #include <unistd.h>
  34. #include <fcntl.h>
  35. #include <errno.h>
  36. #include <assert.h>
  37. #include <syslog.h>
  38. #include <string.h>
  39. #include <time.h>
  40. #include <dirent.h>
  41. #define MAX_ARRAY 100
  42. struct Array
  43. {
  44. void *ptr;
  45. int size;
  46. };
  47. struct NamVal
  48. {
  49. char *name;
  50. void *ptr;
  51. int type;
  52. int should_free;
  53. };
  54. int read_config (char *fname, struct NamVal *para, int n);
  55. int free_config (struct NamVal *nv, int n);
  56. struct hostent * init_sockaddr (struct sockaddr_in *name, char *host, unsigned int port);
  57. int init_server (char *ip, unsigned short port);
  58. int init_udp (char *ip, unsigned short port);
  59. int my_connect (char *host, int port);
  60. int connect_nonb(int sockfd, struct sockaddr_in *saptr, socklen_t salen);
  61. int send_udp (int s, char *host, unsigned int port, char *buf, int len);
  62. int sendMessage (int sock, char *ptr, struct sockaddr_in *dest);
  63. char *read_file (char *fname, int *dlen);
  64. #ifdef HAVE_MYSQL
  65. int authUser (int uid, char *md5, MYSQL *mysql, char *name);
  66. MYSQL *init_mysql (char *host, char *username, char *pass, char *db, char *sock);
  67. int query_mysql (MYSQL *mysql, char *format, ...);
  68. MYSQL_RES *query_mysql_select (MYSQL *mysql, char *format, ...);
  69. #endif //HAVE_MYSQL
  70. #endif //__UTIL_H_INCLUDED