Sha256: b79170a67e9af310a75ef9d65d505388253ed0bf65c642f2cec0651993181a43

Contents?: true

Size: 1.8 KB

Versions: 13

Compression:

Stored size: 1.8 KB

Contents

/*
 * Traffic counter.
 *
 * 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.
 */


#include "trema.h"
#include "counter.h"


hash_table *
create_counter() {
  return create_hash( compare_mac, hash_mac );
}


void
add_counter( hash_table *db, uint8_t *mac, uint64_t packet_count, uint64_t byte_count ) {
  counter *entry = lookup_hash_entry( db, mac );
  if ( entry == NULL ) {
    entry = xmalloc( sizeof( counter ) );
    memcpy( entry->mac, mac, ETH_ADDRLEN );
    entry->packet_count = 0;
    entry->byte_count = 0;
    insert_hash_entry( db, entry->mac, entry );
  }
  entry->packet_count += packet_count;
  entry->byte_count += byte_count;
}


void
foreach_counter( hash_table *db, void function( uint8_t *, counter *, void * ), void *user_data ) {
  foreach_hash( db, ( void ( * )( void *, void *, void * ) ) function, user_data );
}


static void
free_each_value( void *key, void *value, void *user_data ) {
  UNUSED( key );
  UNUSED( user_data );
  xfree( value );
}


void
delete_counter( hash_table *db ) {
  foreach_hash( db, free_each_value, NULL );
  delete_hash( db );
}


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

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
trema-0.3.9 src/examples/traffic_monitor/counter.c
trema-0.3.8 src/examples/traffic_monitor/counter.c
trema-0.3.7 src/examples/traffic_monitor/counter.c
trema-0.3.6 src/examples/traffic_monitor/counter.c
trema-0.3.5 src/examples/traffic_monitor/counter.c
trema-0.3.4 src/examples/traffic_monitor/counter.c
trema-0.3.3 src/examples/traffic_monitor/counter.c
trema-0.3.2 src/examples/traffic_monitor/counter.c
trema-0.3.1 src/examples/traffic_monitor/counter.c
trema-0.3.0 src/examples/traffic_monitor/counter.c
trema-0.2.8 src/examples/traffic_monitor/counter.c
trema-0.2.7 src/examples/traffic_monitor/counter.c
trema-0.2.6 src/examples/traffic_monitor/counter.c