xref: /openbmc/linux/net/tipc/topsrv.h (revision 026321c6)
1026321c6SJon Maloy /*
2026321c6SJon Maloy  * net/tipc/server.h: Include file for TIPC server code
3026321c6SJon Maloy  *
4026321c6SJon Maloy  * Copyright (c) 2012-2013, Wind River Systems
5026321c6SJon Maloy  * Copyright (c) 2017, Ericsson AB
6026321c6SJon Maloy  * All rights reserved.
7026321c6SJon Maloy  *
8026321c6SJon Maloy  * Redistribution and use in source and binary forms, with or without
9026321c6SJon Maloy  * modification, are permitted provided that the following conditions are met:
10026321c6SJon Maloy  *
11026321c6SJon Maloy  * 1. Redistributions of source code must retain the above copyright
12026321c6SJon Maloy  *    notice, this list of conditions and the following disclaimer.
13026321c6SJon Maloy  * 2. Redistributions in binary form must reproduce the above copyright
14026321c6SJon Maloy  *    notice, this list of conditions and the following disclaimer in the
15026321c6SJon Maloy  *    documentation and/or other materials provided with the distribution.
16026321c6SJon Maloy  * 3. Neither the names of the copyright holders nor the names of its
17026321c6SJon Maloy  *    contributors may be used to endorse or promote products derived from
18026321c6SJon Maloy  *    this software without specific prior written permission.
19026321c6SJon Maloy  *
20026321c6SJon Maloy  * Alternatively, this software may be distributed under the terms of the
21026321c6SJon Maloy  * GNU General Public License ("GPL") version 2 as published by the Free
22026321c6SJon Maloy  * Software Foundation.
23026321c6SJon Maloy  *
24026321c6SJon Maloy  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25026321c6SJon Maloy  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26026321c6SJon Maloy  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27026321c6SJon Maloy  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28026321c6SJon Maloy  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29026321c6SJon Maloy  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30026321c6SJon Maloy  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31026321c6SJon Maloy  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32026321c6SJon Maloy  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33026321c6SJon Maloy  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34026321c6SJon Maloy  * POSSIBILITY OF SUCH DAMAGE.
35026321c6SJon Maloy  */
36026321c6SJon Maloy 
37026321c6SJon Maloy #ifndef _TIPC_SERVER_H
38026321c6SJon Maloy #define _TIPC_SERVER_H
39026321c6SJon Maloy 
40026321c6SJon Maloy #include "core.h"
41026321c6SJon Maloy 
42026321c6SJon Maloy #define TIPC_SERVER_NAME_LEN	32
43026321c6SJon Maloy #define TIPC_SUB_CLUSTER_SCOPE  0x20
44026321c6SJon Maloy #define TIPC_SUB_NODE_SCOPE     0x40
45026321c6SJon Maloy #define TIPC_SUB_NO_STATUS      0x80
46026321c6SJon Maloy 
47026321c6SJon Maloy void tipc_topsrv_queue_evt(struct net *net, int conid,
48026321c6SJon Maloy 			   u32 event, struct tipc_event *evt);
49026321c6SJon Maloy 
50026321c6SJon Maloy bool tipc_topsrv_kern_subscr(struct net *net, u32 port, u32 type, u32 lower,
51026321c6SJon Maloy 			     u32 upper, u32 filter, int *conid);
52026321c6SJon Maloy void tipc_topsrv_kern_unsubscr(struct net *net, int conid);
53026321c6SJon Maloy 
54026321c6SJon Maloy #endif
55