xref: /openbmc/linux/net/tipc/topsrv.h (revision c13aca79ff3c4af5fd31a5b2743a90eba6e36a26)
1*026321c6SJon Maloy /*
2*026321c6SJon Maloy  * net/tipc/server.h: Include file for TIPC server code
3*026321c6SJon Maloy  *
4*026321c6SJon Maloy  * Copyright (c) 2012-2013, Wind River Systems
5*026321c6SJon Maloy  * Copyright (c) 2017, Ericsson AB
6*026321c6SJon Maloy  * All rights reserved.
7*026321c6SJon Maloy  *
8*026321c6SJon Maloy  * Redistribution and use in source and binary forms, with or without
9*026321c6SJon Maloy  * modification, are permitted provided that the following conditions are met:
10*026321c6SJon Maloy  *
11*026321c6SJon Maloy  * 1. Redistributions of source code must retain the above copyright
12*026321c6SJon Maloy  *    notice, this list of conditions and the following disclaimer.
13*026321c6SJon Maloy  * 2. Redistributions in binary form must reproduce the above copyright
14*026321c6SJon Maloy  *    notice, this list of conditions and the following disclaimer in the
15*026321c6SJon Maloy  *    documentation and/or other materials provided with the distribution.
16*026321c6SJon Maloy  * 3. Neither the names of the copyright holders nor the names of its
17*026321c6SJon Maloy  *    contributors may be used to endorse or promote products derived from
18*026321c6SJon Maloy  *    this software without specific prior written permission.
19*026321c6SJon Maloy  *
20*026321c6SJon Maloy  * Alternatively, this software may be distributed under the terms of the
21*026321c6SJon Maloy  * GNU General Public License ("GPL") version 2 as published by the Free
22*026321c6SJon Maloy  * Software Foundation.
23*026321c6SJon Maloy  *
24*026321c6SJon Maloy  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
25*026321c6SJon Maloy  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26*026321c6SJon Maloy  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27*026321c6SJon Maloy  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
28*026321c6SJon Maloy  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
29*026321c6SJon Maloy  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
30*026321c6SJon Maloy  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
31*026321c6SJon Maloy  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
32*026321c6SJon Maloy  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
33*026321c6SJon Maloy  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
34*026321c6SJon Maloy  * POSSIBILITY OF SUCH DAMAGE.
35*026321c6SJon Maloy  */
36*026321c6SJon Maloy 
37*026321c6SJon Maloy #ifndef _TIPC_SERVER_H
38*026321c6SJon Maloy #define _TIPC_SERVER_H
39*026321c6SJon Maloy 
40*026321c6SJon Maloy #include "core.h"
41*026321c6SJon Maloy 
42*026321c6SJon Maloy #define TIPC_SERVER_NAME_LEN	32
43*026321c6SJon Maloy #define TIPC_SUB_CLUSTER_SCOPE  0x20
44*026321c6SJon Maloy #define TIPC_SUB_NODE_SCOPE     0x40
45*026321c6SJon Maloy #define TIPC_SUB_NO_STATUS      0x80
46*026321c6SJon Maloy 
47*026321c6SJon Maloy void tipc_topsrv_queue_evt(struct net *net, int conid,
48*026321c6SJon Maloy 			   u32 event, struct tipc_event *evt);
49*026321c6SJon Maloy 
50*026321c6SJon Maloy bool tipc_topsrv_kern_subscr(struct net *net, u32 port, u32 type, u32 lower,
51*026321c6SJon Maloy 			     u32 upper, u32 filter, int *conid);
52*026321c6SJon Maloy void tipc_topsrv_kern_unsubscr(struct net *net, int conid);
53*026321c6SJon Maloy 
54*026321c6SJon Maloy #endif
55