blob: 9b488dbc0d79adc4776ffb3af7e3c3e5c3d6f26f [file] [log] [blame]
// Copyright 2016 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <lib/async-loop/cpp/loop.h>
#include <lib/async/cpp/task.h>
#include "garnet/bin/netconnector/netconnector_impl.h"
#include "garnet/bin/netconnector/netconnector_params.h"
#include "src/lib/fxl/command_line.h"
int main(int argc, const char** argv) {
fxl::CommandLine command_line = fxl::CommandLineFromArgcArgv(argc, argv);
netconnector::NetConnectorParams params(command_line);
if (!params.is_valid()) {
return 1;
}
async::Loop loop(&kAsyncLoopConfigAttachToThread);
netconnector::NetConnectorImpl impl(&params, [&loop]() {
async::PostTask(loop.dispatcher(), [&loop]() { loop.Quit(); });
});
loop.Run();
return 0;
}