Blame src/vma/proto/neighbour_table_mgr.h

Packit 6d2c1b
/*
Packit 6d2c1b
 * Copyright (c) 2001-2020 Mellanox Technologies, Ltd. All rights reserved.
Packit 6d2c1b
 *
Packit 6d2c1b
 * This software is available to you under a choice of one of two
Packit 6d2c1b
 * licenses.  You may choose to be licensed under the terms of the GNU
Packit 6d2c1b
 * General Public License (GPL) Version 2, available from the file
Packit 6d2c1b
 * COPYING in the main directory of this source tree, or the
Packit 6d2c1b
 * BSD license below:
Packit 6d2c1b
 *
Packit 6d2c1b
 *     Redistribution and use in source and binary forms, with or
Packit 6d2c1b
 *     without modification, are permitted provided that the following
Packit 6d2c1b
 *     conditions are met:
Packit 6d2c1b
 *
Packit 6d2c1b
 *      - Redistributions of source code must retain the above
Packit 6d2c1b
 *        copyright notice, this list of conditions and the following
Packit 6d2c1b
 *        disclaimer.
Packit 6d2c1b
 *
Packit 6d2c1b
 *      - Redistributions in binary form must reproduce the above
Packit 6d2c1b
 *        copyright notice, this list of conditions and the following
Packit 6d2c1b
 *        disclaimer in the documentation and/or other materials
Packit 6d2c1b
 *        provided with the distribution.
Packit 6d2c1b
 *
Packit 6d2c1b
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
Packit 6d2c1b
 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
Packit 6d2c1b
 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
Packit 6d2c1b
 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
Packit 6d2c1b
 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
Packit 6d2c1b
 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
Packit 6d2c1b
 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
Packit 6d2c1b
 * SOFTWARE.
Packit 6d2c1b
 */
Packit 6d2c1b
Packit 6d2c1b
Packit 6d2c1b
#ifndef NEIGHBOUR_TABLE_MGR_H
Packit 6d2c1b
#define NEIGHBOUR_TABLE_MGR_H
Packit 6d2c1b
Packit 6d2c1b
#include "vma/proto/neighbour.h"
Packit 6d2c1b
#include "vma/infra/cache_subject_observer.h"
Packit 6d2c1b
Packit 6d2c1b
class neigh_table_mgr : public cache_table_mgr<neigh_key, class neigh_val*>, public observer
Packit 6d2c1b
{
Packit 6d2c1b
public:
Packit 6d2c1b
				neigh_table_mgr();
Packit 6d2c1b
				~neigh_table_mgr();
Packit 6d2c1b
	virtual void 		notify_cb(event * event);
Packit 6d2c1b
	rdma_event_channel*	m_neigh_cma_event_channel;
Packit 6d2c1b
	bool			register_observer(neigh_key,
Packit 6d2c1b
					const cache_observer *,
Packit 6d2c1b
					cache_entry_subject<neigh_key, class neigh_val*> **);
Packit 6d2c1b
Packit 6d2c1b
private:
Packit 6d2c1b
	/* This function will retrieve neigh transport type by the following actions:
Packit 6d2c1b
	 * 1. go to route manager table and get route entry according to the peer ip
Packit 6d2c1b
	 * 2. get netdev from route entry
Packit 6d2c1b
	 * 3. get transport type from netdev
Packit 6d2c1b
	 */
Packit 6d2c1b
	neigh_entry*		create_new_entry(neigh_key neigh_key, const observer* dst);
Packit 6d2c1b
};
Packit 6d2c1b
Packit 6d2c1b
extern neigh_table_mgr *g_p_neigh_table_mgr;
Packit 6d2c1b
Packit 6d2c1b
Packit 6d2c1b
#endif /* NEIGHBOUR_TABLE_MGR_H */