blob: ab662e80bb27517c605881a653654ffd7fc2799d [file] [log] [blame]
// Copyright 2015 The Android Open Source Project
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "android/emulation/control/net_agent.h"
#include "net/net.h"
#ifdef CONFIG_SLIRP
#include "libslirp.h"
#endif
static bool isSlirpInited() {
return slirp_is_inited() != 0;
}
static bool slirpRedir(bool isUdp, int hostPort,
uint32_t guestAddr, int guestPort) {
return slirp_redir(isUdp, hostPort, guestAddr, guestPort) == 0;
}
bool slirpUnredir(bool isUdp, int hostPort) {
return slirp_unredir(isUdp, hostPort) == 0;
}
static const QAndroidNetAgent netAgent = {
.isSlirpInited = &isSlirpInited,
.slirpRedir = &slirpRedir,
.slirpUnredir = &slirpUnredir
};
const QAndroidNetAgent* const gQAndroidNetAgent = &netAgent;