sockets.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:2k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2. kHTTPd -- the next generation
  3. Basic socket functions
  4. */
  5. /****************************************************************
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License as published by
  8.  * the Free Software Foundation; either version 2, or (at your option)
  9.  * any later version.
  10.  *
  11.  * This program is distributed in the hope that it will be useful,
  12.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14.  * GNU General Public License for more details.
  15.  *
  16.  * You should have received a copy of the GNU General Public License
  17.  * along with this program; if not, write to the Free Software
  18.  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  19.  *
  20.  ****************************************************************/
  21. #include "prototypes.h"
  22. #include <linux/kernel.h>
  23. #include <linux/net.h>
  24. #include <linux/version.h>
  25. #include <linux/smp_lock.h>
  26. #include <net/sock.h>
  27. /*
  28. MainSocket is shared by all threads, therefore it has to be
  29. a global variable.
  30. */
  31. struct socket *MainSocket=NULL;
  32. int StartListening(const int Port)
  33. {
  34. struct socket *sock;
  35. struct sockaddr_in sin;
  36. int error;
  37. EnterFunction("StartListening");
  38. /* First create a socket */
  39. error = sock_create(PF_INET,SOCK_STREAM,IPPROTO_TCP,&sock);
  40. if (error<0) 
  41.      (void)printk(KERN_ERR "Error during creation of socket; terminatingn");
  42. /* Now bind the socket */
  43. sin.sin_family      = AF_INET;
  44. sin.sin_addr.s_addr  = INADDR_ANY;
  45. sin.sin_port         = htons((unsigned short)Port);
  46. error = sock->ops->bind(sock,(struct sockaddr*)&sin,sizeof(sin));
  47. if (error<0)
  48. {
  49. (void)printk(KERN_ERR "kHTTPd: Error binding socket. This means that some other n");
  50. (void)printk(KERN_ERR "        daemon is (or was a short time ago) using port %i.n",Port);
  51. return 0;
  52. }
  53. /* Grrr... setsockopt() does this. */
  54. sock->sk->reuse   = 1;
  55. /* Now, start listening on the socket */
  56. /* I have no idea what a sane backlog-value is. 48 works so far. */
  57. error=sock->ops->listen(sock,48);
  58. if (error!=0)
  59. (void)printk(KERN_ERR "kHTTPd: Error listening on socket n");
  60. MainSocket = sock;
  61. EnterFunction("StartListening");
  62. return 1; 
  63. }
  64. void StopListening(void)
  65. {
  66. struct socket *sock;
  67. EnterFunction("StopListening");
  68. if (MainSocket==NULL) return;
  69. sock=MainSocket;
  70. MainSocket = NULL;
  71. sock_release(sock);
  72. LeaveFunction("StopListening");
  73. }