mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-10-31 22:25:30 +00:00
e368dc9c85
This patch was generated by a script. Here's the source of the script for future reference: function convert() { echo "Converting $1 to $2..." find . ! -wholename "*nsprpub*" \ ! -wholename "*security/nss*" \ ! -wholename "*/.hg*" \ ! -wholename "obj-ff-dbg*" \ ! -name nsXPCOMCID.h \ ! -name prtypes.h \ -type f \ \( -iname "*.cpp" \ -o -iname "*.h" \ -o -iname "*.c" \ -o -iname "*.cc" \ -o -iname "*.idl" \ -o -iname "*.ipdl" \ -o -iname "*.ipdlh" \ -o -iname "*.mm" \) | \ xargs -n 1 sed -i -e "s/\b$1\b/$2/g" } convert PRInt8 int8_t convert PRUint8 uint8_t convert PRInt16 int16_t convert PRUint16 uint16_t convert PRInt32 int32_t convert PRUint32 uint32_t convert PRInt64 int64_t convert PRUint64 uint64_t convert PRIntn int convert PRUintn unsigned convert PRSize size_t convert PROffset32 int32_t convert PROffset64 int64_t convert PRPtrdiff ptrdiff_t convert PRFloat64 double
146 lines
3.6 KiB
C++
146 lines
3.6 KiB
C++
/* vim:set ts=4 sw=4 et cindent: */
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#include "TestCommon.h"
|
|
#include <stdlib.h>
|
|
#include "nsIServiceManager.h"
|
|
#include "nsIServerSocket.h"
|
|
#include "nsISocketTransport.h"
|
|
#include "nsNetUtil.h"
|
|
#include "nsStringAPI.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "prlog.h"
|
|
|
|
#if defined(PR_LOGGING)
|
|
//
|
|
// set NSPR_LOG_MODULES=Test:5
|
|
//
|
|
static PRLogModuleInfo *gTestLog = nullptr;
|
|
#endif
|
|
#define LOG(args) PR_LOG(gTestLog, PR_LOG_DEBUG, args)
|
|
|
|
class MySocketListener : public nsIServerSocketListener
|
|
{
|
|
public:
|
|
NS_DECL_ISUPPORTS
|
|
NS_DECL_NSISERVERSOCKETLISTENER
|
|
|
|
MySocketListener() {}
|
|
virtual ~MySocketListener() {}
|
|
};
|
|
|
|
NS_IMPL_THREADSAFE_ISUPPORTS1(MySocketListener, nsIServerSocketListener)
|
|
|
|
NS_IMETHODIMP
|
|
MySocketListener::OnSocketAccepted(nsIServerSocket *serv,
|
|
nsISocketTransport *trans)
|
|
{
|
|
LOG(("MySocketListener::OnSocketAccepted [serv=%p trans=%p]\n", serv, trans));
|
|
|
|
nsCAutoString host;
|
|
int32_t port;
|
|
|
|
trans->GetHost(host);
|
|
trans->GetPort(&port);
|
|
|
|
LOG((" -> %s:%d\n", host.get(), port));
|
|
|
|
nsCOMPtr<nsIInputStream> input;
|
|
nsCOMPtr<nsIOutputStream> output;
|
|
nsresult rv;
|
|
|
|
rv = trans->OpenInputStream(nsITransport::OPEN_BLOCKING, 0, 0, getter_AddRefs(input));
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
rv = trans->OpenOutputStream(nsITransport::OPEN_BLOCKING, 0, 0, getter_AddRefs(output));
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
char buf[256];
|
|
uint32_t n;
|
|
|
|
rv = input->Read(buf, sizeof(buf), &n);
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
const char response[] = "HTTP/1.0 200 OK\r\nContent-Type: text/plain\r\n\r\nFooooopy!!\r\n";
|
|
rv = output->Write(response, sizeof(response) - 1, &n);
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
input->Close();
|
|
output->Close();
|
|
return NS_OK;
|
|
}
|
|
|
|
NS_IMETHODIMP
|
|
MySocketListener::OnStopListening(nsIServerSocket *serv, nsresult status)
|
|
{
|
|
LOG(("MySocketListener::OnStopListening [serv=%p status=%x]\n", serv, status));
|
|
QuitPumpingEvents();
|
|
return NS_OK;
|
|
}
|
|
|
|
static nsresult
|
|
MakeServer(int32_t port)
|
|
{
|
|
nsresult rv;
|
|
nsCOMPtr<nsIServerSocket> serv = do_CreateInstance(NS_SERVERSOCKET_CONTRACTID, &rv);
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
rv = serv->Init(port, true, 5);
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
|
|
rv = serv->GetPort(&port);
|
|
if (NS_FAILED(rv))
|
|
return rv;
|
|
LOG((" listening on port %d\n", port));
|
|
|
|
rv = serv->AsyncListen(new MySocketListener());
|
|
return rv;
|
|
}
|
|
|
|
int
|
|
main(int argc, char* argv[])
|
|
{
|
|
if (test_common_init(&argc, &argv) != 0)
|
|
return -1;
|
|
|
|
nsresult rv= (nsresult)-1;
|
|
if (argc < 2) {
|
|
printf("usage: %s <port>\n", argv[0]);
|
|
return -1;
|
|
}
|
|
|
|
#if defined(PR_LOGGING)
|
|
gTestLog = PR_NewLogModule("Test");
|
|
#endif
|
|
|
|
/*
|
|
* The following code only deals with XPCOM registration stuff. and setting
|
|
* up the event queues. Copied from TestSocketIO.cpp
|
|
*/
|
|
|
|
rv = NS_InitXPCOM2(nullptr, nullptr, nullptr);
|
|
if (NS_FAILED(rv)) return rv;
|
|
|
|
{
|
|
rv = MakeServer(atoi(argv[1]));
|
|
if (NS_FAILED(rv)) {
|
|
LOG(("MakeServer failed [rv=%x]\n", rv));
|
|
return -1;
|
|
}
|
|
|
|
// Enter the message pump to allow the URL load to proceed.
|
|
PumpEvents();
|
|
} // this scopes the nsCOMPtrs
|
|
// no nsCOMPtrs are allowed to be alive when you call NS_ShutdownXPCOM
|
|
NS_ShutdownXPCOM(nullptr);
|
|
return rv;
|
|
}
|