]> git.proxmox.com Git - mirror_frr.git/blame - lib/ptm_lib.h
zebra, lib: fix the ZEBRA_INTERFACE_VRF_UPDATE zapi message
[mirror_frr.git] / lib / ptm_lib.h
CommitLineData
50e24903
DS
1/* PTM Library
2 * Copyright (C) 2015 Cumulus Networks, Inc.
c43ed2e4 3 *
50e24903 4 * This file is part of Quagga.
c43ed2e4 5 *
50e24903
DS
6 * Quagga is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2, or (at your option) any
9 * later version.
10 *
11 * Quagga is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
15 *
896014f4
DL
16 * You should have received a copy of the GNU General Public License along
17 * with this program; see the file COPYING; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
c43ed2e4 19 */
50e24903
DS
20#ifndef __PTM_LIB_H__
21#define __PTM_LIB_H__
c43ed2e4
DS
22
23#define PTMLIB_MSG_SZ 1024
24#define PTMLIB_MSG_HDR_LEN 37
25#define PTMLIB_MSG_VERSION 2
26#define PTMLIB_MAXNAMELEN 32
27
28#define PTMLIB_CMD_GET_STATUS "get-status"
29#define PTMLIB_CMD_GET_BFD_CLIENT "get-bfd-client"
30#define PTMLIB_CMD_START_BFD_SESS "start-bfd-sess"
31#define PTMLIB_CMD_STOP_BFD_SESS "stop-bfd-sess"
32
33typedef enum {
d62a17ae 34 PTMLIB_MSG_TYPE_NOTIFICATION = 1,
35 PTMLIB_MSG_TYPE_CMD,
36 PTMLIB_MSG_TYPE_RESPONSE,
c43ed2e4
DS
37} ptmlib_msg_type;
38
39typedef enum {
d62a17ae 40 MODULE_BFD = 0,
41 MODULE_LLDP,
42 MODULE_MAX,
c43ed2e4
DS
43} ptmlib_mod_type;
44
d62a17ae 45typedef int (*ptm_cmd_cb)(void *data, void *arg);
46typedef int (*ptm_notify_cb)(void *data, void *arg);
47typedef int (*ptm_response_cb)(void *data, void *arg);
48typedef int (*ptm_log_cb)(void *data, void *arg, ...);
c43ed2e4
DS
49
50typedef struct ptm_lib_handle_s {
d62a17ae 51 char client_name[PTMLIB_MAXNAMELEN];
52 ptm_cmd_cb cmd_cb;
53 ptm_notify_cb notify_cb;
54 ptm_response_cb response_cb;
c43ed2e4
DS
55} ptm_lib_handle_t;
56
57/* Prototypes */
58int ptm_lib_process_msg(ptm_lib_handle_t *, int, char *, int, void *);
d62a17ae 59ptm_lib_handle_t *ptm_lib_register(char *, ptm_cmd_cb, ptm_notify_cb,
60 ptm_response_cb);
c43ed2e4
DS
61void ptm_lib_deregister(ptm_lib_handle_t *);
62int ptm_lib_find_key_in_msg(void *, const char *, char *);
63int ptm_lib_init_msg(ptm_lib_handle_t *, int, int, void *, void **);
88177fe3 64int ptm_lib_append_msg(ptm_lib_handle_t *, void *, const char *, const char *);
c43ed2e4 65int ptm_lib_complete_msg(ptm_lib_handle_t *, void *, char *, int *);
b5f270ad 66int ptm_lib_cleanup_msg(ptm_lib_handle_t *, void *);
50e24903
DS
67
68#endif