-
Notifications
You must be signed in to change notification settings - Fork 48
/
findserversonnetwork.h
32 lines (22 loc) · 1.19 KB
/
findserversonnetwork.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/* Copyright (c) 1996-2024, OPC Foundation. All rights reserved.
The source code in this file is covered under a dual - license scenario :
- RCL: for OPC Foundation members in good - standing
- GPL V2: everybody else
RCL license terms accompanied with this source code.See http ://opcfoundation.org/License/RCL/1.00/
GNU General Public License as published by the Free Software Foundation;
version 2 of the License are accompanied with this source code.See http ://opcfoundation.org/License/GPLv2
This source code is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
*/
#ifndef __FINDSERVERSONNETWORK_H__
#define __FINDSERVERSONNETWORK_H__
#include <opcua_proxystub.h>
OpcUa_StatusCode ualds_findserversonnetwork_start_listening();
void ualds_findserversonnetwork_stop_listening();
void ualds_findserversonnetwork_socketEventCallback(int *shutdown);
void ualds_zeroconf_register_offline(const char *szServerUri);
void ualds_zeroconf_unregister_offline(const char *szServerUri);
void ualds_zeroconf_load_offline();
void ualds_zeroconf_cleanup_offline();
#endif /* __FINDSERVERSONNETWORK_H__ */