mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-06 00:55:37 +00:00
52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set sw=2 ts=8 et ft=cpp: */
|
|
/* 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/. */
|
|
|
|
#ifndef mozilla_ipc_Ril_h
|
|
#define mozilla_ipc_Ril_h 1
|
|
|
|
#include "mozilla/RefPtr.h"
|
|
|
|
namespace base {
|
|
class MessageLoop;
|
|
}
|
|
|
|
namespace mozilla {
|
|
namespace ipc {
|
|
|
|
|
|
/*
|
|
* Represents raw data going to or coming from the RIL socket. Can
|
|
* actually contain multiple RIL parcels in the data block, and may
|
|
* also contain incomplete parcels on the front or back. Actual parcel
|
|
* construction is handled in the worker thread.
|
|
*/
|
|
struct RilRawData
|
|
{
|
|
static const size_t MAX_DATA_SIZE = 1024;
|
|
uint8_t mData[MAX_DATA_SIZE];
|
|
|
|
// Number of octets in mData.
|
|
size_t mSize;
|
|
};
|
|
|
|
class RilConsumer : public RefCounted<RilConsumer>
|
|
{
|
|
public:
|
|
virtual ~RilConsumer() { }
|
|
virtual void MessageReceived(RilRawData* aMessage) { }
|
|
};
|
|
|
|
bool StartRil(RilConsumer* aConsumer);
|
|
|
|
bool SendRilRawData(RilRawData** aMessage);
|
|
|
|
void StopRil();
|
|
|
|
} // namespace ipc
|
|
} // namepsace mozilla
|
|
|
|
#endif // mozilla_ipc_Ril_h
|