Changeset 182 in Main for trunk/Server


Ignore:
Timestamp:
Sep 27, 2024, 9:55:12 PM (7 weeks ago)
Author:
Nishi
Message:

psp

Location:
trunk/Server
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Server/Makefile

    r128 r182  
    88OBJS = version.o main.o config.o server.o http.o module.o strptime.o $(EXTOBJS) $(PREOBJS)
    99
    10 all: tewi$(EXEC)
     10all: tewi$(EXEC) $(TARGET)
     11
     12tewi_strip$(EXEC): tewi$(EXEC)
    1113
    1214tewi$(EXEC): $(OBJS) ../Common/common.a
    1315        $(CC) $(LDFLAGS) $(EXTLDFLAGS) -o $@ $(OBJS) $(EXTLIBS) $(LIBS) ../Common/common.a
     16        $(SERVADD)
     17
     18tewi.pbp: tewi_strip$(EXEC) param.sfo
     19        pack-pbp $@ param.sfo NULL NULL NULL NULL NULL tewi_strip$(EXEC) NULL
     20
     21param.sfo:
     22        mksfoex -d MEMSIZE=1 'Tewi HTTPd' $@
    1423
    1524.c.o:
     
    2029
    2130clean:
    22         rm -f *.o tewi *.exe *.res
     31        rm -f *.o tewi *.exe *.res *.elf *.sfo *.pbp
  • trunk/Server/config.c

    r178 r182  
    102102        config.server_admin = cm_strdup(SERVER_ADMIN);
    103103        config.defined[0] = NULL;
     104#ifdef _PSP
     105        strcpy(config.hostname, "psp");
     106#else
    104107        gethostname(config.hostname, 1024);
     108#endif
    105109#ifdef HAS_CHROOT
    106110        tw_add_define("HAS_CHROOT");
     
    411415                                                }
    412416                                        } else if(cm_strcaseequ(r[0], "ReadmeFile") || cm_strcaseequ(r[0], "Readme")) {
    413                                                 if(cm_strcaseequ(r[0], "Readme")){
     417                                                if(cm_strcaseequ(r[0], "Readme")) {
    414418                                                        cm_force_log("NOTE: Readme directive is deprecated.");
    415419                                                }
  • trunk/Server/main.c

    r168 r182  
    2424#ifdef __MINGW32__
    2525#include <windows.h>
     26#endif
     27
     28#ifdef _PSP
     29#include <pspkernel.h>
     30#include <pspdebug.h>
     31
     32PSP_MODULE_INFO("Tewi HTTPd", PSP_MODULE_USER, 1, 1);
     33PSP_MAIN_THREAD_ATTR(PSP_THREAD_ATTR_USER);
     34
     35#define printf(...) pspDebugScreenPrintf(__VA_ARGS__)
    2636#endif
    2737
     
    8393        StartServiceCtrlDispatcher(table);
    8494#else
     95#ifdef _PSP
     96        pspDebugScreenInit();
     97        pspDebugScreenSetXY(0, 0);
     98#endif
    8599        int st = startup(argc, argv);
    86100        if(st != -1) return st;
     
    114128                                        }
    115129                                        confpath = argv[i];
     130#ifndef _PSP
    116131                                } else if(strcmp(argv[i], "--logfile") == 0 || strcmp(argv[i], "-l") == 0) {
    117132                                        i++;
     
    128143                                                return 1;
    129144                                        }
     145#endif
    130146                                } else if(strcmp(argv[i], "--version") == 0 || strcmp(argv[i], "-V") == 0) {
    131147                                        printf("Tewi HTTPd Tewi/%s\n", tw_get_version());
     
    135151                                        printf("Usage: %s [--config|-C config] [--verbose|-v] [--version|-V]\n", argv[0]);
    136152                                        printf("--config  | -C config      : Specify config\n");
     153#ifndef _PSP
    137154                                        printf("--logfile | -l logfile     : Specify logfile\n");
     155#endif
    138156                                        printf("--verbose | -v             : Verbose mode\n");
    139157                                        printf("--version | -V             : Version information\n");
  • trunk/Server/module.c

    r159 r182  
    1414#include <stdlib.h>
    1515
     16extern struct tw_config config;
     17
     18#ifdef _PSP
     19void* tw_module_load(const char* path) { return NULL; }
     20
     21void* tw_module_symbol(void* mod, const char* sym) { return NULL; }
     22
     23int tw_module_init(void* mod) { return 1; }
     24
     25#else
     26
    1627#ifdef __MINGW32__
    1728#include <windows.h>
     
    1930#include <dlfcn.h>
    2031#endif
    21 
    22 extern struct tw_config config;
    2332
    2433void* tw_module_load(const char* path) {
     
    4655#endif
    4756}
     57
     58int tw_module_init(void* mod) {
     59        tw_mod_init_t mod_init = (tw_mod_init_t)tw_module_symbol(mod, "mod_init");
     60        if(mod_init == NULL) {
     61                cm_log("Module", "Could not init a module");
     62                return 1;
     63        } else {
     64                struct tw_tool tools;
     65                tw_init_tools(&tools);
     66                return mod_init(&config, &tools);
     67        }
     68}
     69#endif
    4870
    4971void tw_add_version(const char* string) {
     
    88110        tools->add_define = tw_add_define;
    89111}
    90 
    91 int tw_module_init(void* mod) {
    92         tw_mod_init_t mod_init = (tw_mod_init_t)tw_module_symbol(mod, "mod_init");
    93         if(mod_init == NULL) {
    94                 cm_log("Module", "Could not init a module");
    95                 return 1;
    96         } else {
    97                 struct tw_tool tools;
    98                 tw_init_tools(&tools);
    99                 return mod_init(&config, &tools);
    100         }
    101 }
  • trunk/Server/server.c

    r173 r182  
    2424#include <errno.h>
    2525#include <sys/stat.h>
     26#include <sys/types.h>
    2627#include <time.h>
    2728
     
    5354#include <netdb.h>
    5455#endif
     56#endif
     57
     58#ifdef _PSP
     59#include "strptime.h"
    5560#endif
    5661
     
    507512                                        struct tm tm;
    508513                                        strptime(req.headers[i + 1], "%a, %d %b %Y %H:%M:%S GMT", &tm);
    509 #ifdef __MINGW32__
     514#if defined(__MINGW32__) || defined(_PSP)
    510515                                        time_t t = 0;
    511516                                        struct tm* btm = localtime(&t);
     
    907912                                if(cond) {
    908913                                        SOCKADDR claddr;
    909                                         int clen = sizeof(claddr);
     914                                        socklen_t clen = sizeof(claddr);
    910915                                        int sock = accept(sockets[i], (struct sockaddr*)&claddr, &clen);
    911916                                        cm_log("Server", "New connection accepted");
  • trunk/Server/strptime.c

    r44 r182  
    3636//__RCSID("$NetBSD: strptime.c,v 1.62 2017/08/24 01:01:09 ginsbach Exp $");
    3737
    38 #ifdef __MINGW32__
     38#if defined(__MINGW32__)
    3939
    4040#include <ctype.h>
  • trunk/Server/strptime.h

    r140 r182  
    88#include <time.h>
    99
    10 #ifdef _WIN32
     10#if defined(_WIN32) || defined(_PSP)
    1111char* strptime(const char *buf, const char *fmt, struct tm *tm);
    1212#endif
Note: See TracChangeset for help on using the changeset viewer.