Sha256: a88c1549213eebf976f02f75940975118fded3602d461579562fc5414b834bb6

Contents?: true

Size: 1.69 KB

Versions: 23

Compression:

Stored size: 1.69 KB

Contents

/*
 * OpenFlow flow matching library
 *
 * Author: Kazushi SUGYO
 *
 * Copyright (C) 2008-2012 NEC Corporation
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License, version 2, as
 * published by the Free Software Foundation.
 *
 * This program 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.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */


#ifndef MATCH_TABLE_H
#define MATCH_TABLE_H


#include <openflow.h>
#include "hash_table.h"
#include "linked_list.h"


void init_match_table( void );
void finalize_match_table( void );
bool insert_match_entry( struct ofp_match match, uint16_t priority, void *data );
void *lookup_match_strict_entry( struct ofp_match match, uint16_t priority );
void *lookup_match_entry( struct ofp_match match );
bool update_match_entry( struct ofp_match match, uint16_t priority, void *data );
void *delete_match_strict_entry( struct ofp_match match, uint16_t priority );
void foreach_match_table( void function( struct ofp_match match, uint16_t priority, void *data, void *user_data ), void *user_data );
void map_match_table( struct ofp_match match, void function( struct ofp_match match, uint16_t priority, void *data, void *user_data ), void *user_data );


#endif // MATCH_TABLE_H


/*
 * Local variables:
 * c-basic-offset: 2
 * indent-tabs-mode: nil
 * End:
 */

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
trema-0.3.9 src/lib/match_table.h
trema-0.3.8 src/lib/match_table.h
trema-0.3.7 src/lib/match_table.h
trema-0.3.6 src/lib/match_table.h
trema-0.3.5 src/lib/match_table.h
trema-0.3.4 src/lib/match_table.h
trema-0.3.3 src/lib/match_table.h
trema-0.3.2 src/lib/match_table.h
trema-0.3.1 src/lib/match_table.h
trema-0.3.0 src/lib/match_table.h
trema-0.2.8 src/lib/match_table.h
trema-0.2.7 src/lib/match_table.h
trema-0.2.6 src/lib/match_table.h
trema-0.2.5 src/lib/match_table.h
trema-0.2.4 src/lib/match_table.h
trema-0.2.3 src/lib/match_table.h
trema-0.2.2.1 src/lib/match_table.h
trema-0.2.2 src/lib/match_table.h
trema-0.2.1 src/lib/match_table.h
trema-0.2.0 src/lib/match_table.h