2012-09-12 20:42:07 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* apps/include/netutils/discover.h
|
|
|
|
*
|
2021-06-11 08:28:21 +02:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you 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
|
2012-09-12 20:42:07 +02:00
|
|
|
*
|
2021-06-11 08:28:21 +02:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2012-09-12 20:42:07 +02:00
|
|
|
*
|
2021-06-11 08:28:21 +02:00
|
|
|
* 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.
|
2012-09-12 20:42:07 +02:00
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
|
|
|
#ifndef __APPS_INCLUDE_NETUTILS_DISCOVER_H
|
|
|
|
#define __APPS_INCLUDE_NETUTILS_DISCOVER_H
|
|
|
|
|
2021-06-11 11:07:52 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Included Files
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-05-21 20:47:07 +02:00
|
|
|
#include <stdint.h>
|
|
|
|
|
2012-09-12 20:42:07 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Public Function Prototypes
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-05-21 20:47:07 +02:00
|
|
|
struct discover_info_s
|
|
|
|
{
|
|
|
|
uint8_t devclass; /* Device class, 0xff for all devices */
|
|
|
|
const char *description;
|
|
|
|
};
|
|
|
|
|
2012-09-12 20:42:07 +02:00
|
|
|
/****************************************************************************
|
|
|
|
* Name: discover_start
|
|
|
|
*
|
|
|
|
* Description:
|
|
|
|
* Start the discover daemon.
|
|
|
|
*
|
2020-02-22 19:52:12 +01:00
|
|
|
* Input Parameters:
|
2013-05-21 20:47:07 +02:00
|
|
|
*
|
|
|
|
* info Discover information, if NULL mconf defaults will be used.
|
|
|
|
*
|
2012-09-12 20:42:07 +02:00
|
|
|
* Return:
|
|
|
|
* The process ID (pid) of the new discover daemon is returned on
|
|
|
|
* success; A negated errno is returned if the daemon was not successfully
|
|
|
|
* started.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2013-05-21 20:47:07 +02:00
|
|
|
int discover_start(struct discover_info_s *info);
|
2012-09-12 20:42:07 +02:00
|
|
|
|
|
|
|
#endif /* __APPS_INCLUDE_NETUTILS_DISCOVER_H */
|