[2286] | 1 | /********************************************************************** |
---|
| 2 | * |
---|
| 3 | * httpsrc.cpp |
---|
| 4 | * Copyright (C) 1996 |
---|
| 5 | * |
---|
| 6 | * A component of the fnord webserver written by bmorin@wpi.edu. |
---|
| 7 | * |
---|
| 8 | * Altered for use with the Greenstone digital library software by the |
---|
| 9 | * New Zealand Digital Library Project at the University of Waikato, |
---|
| 10 | * New Zealand. |
---|
| 11 | * |
---|
| 12 | * This program is free software; you can redistribute it and/or modify |
---|
| 13 | * it under the terms of the GNU General Public License as published by |
---|
| 14 | * the Free Software Foundation; either version 2 of the License, or |
---|
| 15 | * (at your option) any later version. |
---|
| 16 | * |
---|
| 17 | * This program is distributed in the hope that it will be useful, |
---|
| 18 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 19 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 20 | * GNU General Public License for more details. |
---|
| 21 | * |
---|
| 22 | * You should have received a copy of the GNU General Public License |
---|
| 23 | * along with this program; if not, write to the Free Software |
---|
| 24 | * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
---|
| 25 | * |
---|
| 26 | *********************************************************************/ |
---|
[611] | 27 | |
---|
[1203] | 28 | #include "text_t.h" |
---|
[611] | 29 | #include <windows.h> |
---|
| 30 | #include <stdlib.h> |
---|
| 31 | #include <stdio.h> |
---|
| 32 | #include <string.h> |
---|
| 33 | #include <memory.h> |
---|
| 34 | #pragma hdrstop |
---|
| 35 | #include "netio.h" |
---|
| 36 | #include "settings.h" |
---|
| 37 | #include "httpreq.h" |
---|
| 38 | #include "httpsrv.h" |
---|
| 39 | #include "locate.h" |
---|
| 40 | |
---|
| 41 | //Private Functions |
---|
| 42 | |
---|
| 43 | /* |
---|
| 44 | Function Name: HTTP Server Answer |
---|
| 45 | Purpose: Answers messages saying that a connection is ready to start |
---|
| 46 | */ |
---|
| 47 | void HTTPServerAnswer(); |
---|
| 48 | |
---|
| 49 | //Module Vars |
---|
| 50 | static SOCKET ServerSocket = INVALID_SOCKET; |
---|
| 51 | |
---|
| 52 | static HWND MsgWindow; |
---|
| 53 | |
---|
| 54 | /******************************************************************************/ |
---|
| 55 | // returns 0 on success, and a WSA error otherwise |
---|
| 56 | int StartHTTPServer(HWND PassedMsgWindow) { |
---|
[2286] | 57 | |
---|
[611] | 58 | MsgWindow = PassedMsgWindow; |
---|
| 59 | //Create the server socket |
---|
[902] | 60 | return CreateListeningSocket(gsdl_port_num, MsgWindow, HTTP_SERVER_MSG, ServerSocket); |
---|
[611] | 61 | } |
---|
| 62 | |
---|
| 63 | /******************************************************************************/ |
---|
| 64 | void EndHTTPServer() |
---|
| 65 | { |
---|
| 66 | //Stop the listening socket |
---|
| 67 | DestroyListeningSocket(ServerSocket, MsgWindow); |
---|
| 68 | } |
---|
| 69 | |
---|
| 70 | /******************************************************************************/ |
---|
| 71 | void ProcessHTTPServerMsg(WPARAM Socket, LPARAM MsgInfo) { |
---|
[2286] | 72 | log_message("accept message arrived\n"); |
---|
| 73 | if (Socket != ServerSocket) { |
---|
| 74 | if (gsdl_keep_log || gsdl_show_console) log_message("Incorrect socket sent in message"); |
---|
| 75 | } |
---|
| 76 | switch (WSAGETSELECTEVENT(MsgInfo)) { |
---|
| 77 | case FD_ACCEPT: |
---|
| 78 | switch (WSAGETSELECTERROR(MsgInfo)) { |
---|
| 79 | case WSAENETDOWN: |
---|
| 80 | LogCriticalError("1","Network Down"); |
---|
| 81 | break; |
---|
| 82 | default: //No Error |
---|
| 83 | HTTPServerAnswer(); |
---|
| 84 | } |
---|
| 85 | break; |
---|
| 86 | } |
---|
[611] | 87 | } |
---|
| 88 | |
---|
| 89 | /******************************************************************************/ |
---|
| 90 | void HTTPServerAnswer() { |
---|
[2286] | 91 | SOCKADDR_IN ClientSockAddr; |
---|
| 92 | SOCKET ClientSocket; |
---|
| 93 | int AddrLen = sizeof(SOCKADDR_IN); |
---|
| 94 | RequestThreadMessageT Parameters; |
---|
[611] | 95 | while (AnswerListeningSocket(ServerSocket, ClientSocket, ClientSockAddr, AddrLen) == 0) { |
---|
| 96 | log_message("Answering socket\n"); |
---|
[2286] | 97 | //Call the thread procedure to handle the connection |
---|
[611] | 98 | Parameters.ClientSockAddr = ClientSockAddr; |
---|
[2286] | 99 | Parameters.ClientSocket = ClientSocket; |
---|
| 100 | Parameters.AddrLen = AddrLen; |
---|
[611] | 101 | RequestThread(&Parameters); |
---|
| 102 | } |
---|
| 103 | } |
---|