flycast/core/network/netservice.cpp

69 lines
1.5 KiB
C++

/*
Copyright 2025 flyinghead
This file is part of Flycast.
Flycast is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 2 of the License, or
(at your option) any later version.
Flycast is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Flycast. If not, see <https://www.gnu.org/licenses/>.
*/
#include "netservice.h"
#include "picoppp.h"
#include "dcnet.h"
#include "emulator.h"
#include "cfg/option.h"
namespace net::modbba
{
static Service *service;
static bool usingDCNet;
bool start()
{
if (service == nullptr || usingDCNet != config::UseDCNet)
{
delete service;
if (config::UseDCNet)
service = new DCNetService();
else
service = new PicoTcpService();
usingDCNet = config::UseDCNet;
}
return service->start();
}
void stop() {
if (service != nullptr)
service->stop();
}
void writeModem(u8 b) {
verify(service != nullptr);
service->writeModem(b);
}
int readModem() {
verify(service != nullptr);
return service->readModem();
}
int modemAvailable() {
verify(service != nullptr);
return service->modemAvailable();
}
void receiveEthFrame(const u8 *frame, u32 size) {
start();
service->receiveEthFrame(frame, size);
}
}