mirror of
https://github.com/valitydev/osquery-1.git
synced 2024-11-08 18:33:54 +00:00
571fd65796
Missing osquery/tables.h include in routes.cpp and need to add gen_users to blacklist on FreeBSD.
34 lines
673 B
C++
34 lines
673 B
C++
/*
|
|
* Copyright (c) 2014, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*
|
|
*/
|
|
|
|
#include <osquery/core.h>
|
|
#include <osquery/tables.h>
|
|
|
|
namespace osquery {
|
|
namespace tables {
|
|
|
|
QueryData genArpCache() {
|
|
QueryData results;
|
|
|
|
throw std::domain_error("Table not implemented for FreeBSD");
|
|
|
|
return results;
|
|
}
|
|
|
|
QueryData genRoutes() {
|
|
QueryData results;
|
|
|
|
throw std::domain_error("Table not implemented for FreeBSD");
|
|
|
|
return results;
|
|
}
|
|
}
|
|
}
|