| // 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 "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(¶ms, [&loop]() { |
| async::PostTask(loop.dispatcher(), [&loop]() { loop.Quit(); }); |
| }); |
| |
| loop.Run(); |
| return 0; |
| } |