mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-07 12:15:51 +00:00
113 lines
3.0 KiB
C
113 lines
3.0 KiB
C
/* -*- Mode: C; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*-
|
|
*
|
|
* The contents of this file are subject to the Netscape Public License
|
|
* Version 1.0 (the "NPL"); you may not use this file except in
|
|
* compliance with the NPL. You may obtain a copy of the NPL at
|
|
* http://www.mozilla.org/NPL/
|
|
*
|
|
* Software distributed under the NPL is distributed on an "AS IS" basis,
|
|
* WITHOUT WARRANTY OF ANY KIND, either express or implied. See the NPL
|
|
* for the specific language governing rights and limitations under the
|
|
* NPL.
|
|
*
|
|
* The Initial Developer of this code under the NPL is Netscape
|
|
* Communications Corporation. Portions created by Netscape are
|
|
* Copyright (C) 1998 Netscape Communications Corporation. All Rights
|
|
* Reserved.
|
|
*/
|
|
#include <sys/types.h>
|
|
#include "ONEiiop.h"
|
|
#include "rdf.h"
|
|
|
|
#if !defined(WIN32) && !defined(HPUX) && !defined(OSF1)
|
|
extern "C" int gethostname(char *name, int namelen);
|
|
#endif
|
|
long
|
|
Run(ServerSession_t obj)
|
|
{
|
|
char *buffer = "Hello World!!!\n";
|
|
char* query = malloc(300);
|
|
size_t bufflen = strlen(buffer);
|
|
WAIgetRequestInfo(obj, "QUERY", &query);
|
|
WAIsetResponseContentLength(obj, bufflen);
|
|
WAIStartResponse(obj);
|
|
WAIWriteClient(obj, (const unsigned char *)buffer, bufflen);
|
|
WAIWriteClient(obj, (const unsigned char *)query, strlen(query));
|
|
return 0;
|
|
}
|
|
|
|
//
|
|
// Two different ways to build here.
|
|
// WinMain if you want a windows app.
|
|
// main for Unix and windows console app.
|
|
|
|
#if defined(WIN32)
|
|
int WINAPI WinMain(
|
|
HINSTANCE hInstance, // handle to current instance
|
|
HINSTANCE hPrevInstance, // handle to previous instance
|
|
LPSTR lpCmdLine, // pointer to command line
|
|
int nCmdShow // show state of window
|
|
)
|
|
{
|
|
int argc = 0;
|
|
char **argv = NULL;
|
|
#else
|
|
int main(int argc, char **argv)
|
|
{
|
|
#endif
|
|
char localhost[256];
|
|
char *host;
|
|
IIOPWebAppService_t obj;
|
|
|
|
//
|
|
// Normally we expect to see a hostname:port as
|
|
// our one and only argument. If we are started by
|
|
// the OAD we will see an extra argument which should
|
|
// be ignored.
|
|
// The recommended registration with the OAD should
|
|
// specify the hostname:port as an argument to the
|
|
// object provider.
|
|
//
|
|
// So try to ferrit out the hostname:port
|
|
#ifndef WIN32
|
|
// Easier if we just have a normal main.
|
|
if (argc > 1){
|
|
if (argc == 1)
|
|
host = argv[1];
|
|
else if (*argv[1] != '-')
|
|
host = argv[1];
|
|
|
|
#else
|
|
// Windows command line drops the program name
|
|
// that appears as argv[0].
|
|
// GetCommandLine can be used to retrieve the
|
|
// whole thing.
|
|
if (lpCmdLine && *lpCmdLine){
|
|
if (*lpCmdLine != '-'){
|
|
char *sep = strchr(lpCmdLine, ' ');
|
|
if (sep)
|
|
*sep = '\0';
|
|
host = lpCmdLine;
|
|
}
|
|
#endif
|
|
}else{
|
|
gethostname(localhost, sizeof(localhost));
|
|
host = localhost;
|
|
}
|
|
|
|
//
|
|
// Pass in argc/argv if we have 'em.
|
|
#ifndef WIN32
|
|
obj = WAIcreateWebAppService("OpenDir", Run, argc, argv);
|
|
#else
|
|
obj = WAIcreateWebAppService("OpenDir", Run, 0, 0);
|
|
#endif
|
|
WAIregisterService(obj, host);
|
|
WAIimplIsReady();
|
|
RDF_Initialize();
|
|
RDF_ReadFile("opendir.rdf");
|
|
return 0;
|
|
}
|
|
|
|
|