Sha256: a5f5cdd63e1d2964bcf332662aadcea201c8fad7b3e15cb628dbc75f7880e150

Contents?: true

Size: 1.93 KB

Versions: 20

Compression:

Stored size: 1.93 KB

Contents

/*
 * Sends echo_request messages to the specified datapath ID.
 *
 * Copyright (C) 2008-2013 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 <inttypes.h>
#include <stdio.h>
#include "trema.h"


void
usage() {
  printf( "Usage: %s COUNT\n", get_executable_name() );
}


static void
send_echo_requests( uint64_t datapath_id, void *count ) {
  for ( int i = 0; i < *( ( int * ) count ); i++ ) {
    buffer *echo_request = create_echo_request( get_transaction_id(), NULL );
    bool ret = send_openflow_message( datapath_id, echo_request );
    if ( !ret ) {
      error( "Failed to send an echo request message to the switch with datapath ID = %#" PRIx64 ".", datapath_id );
    }
    free_buffer( echo_request );
  }
}


static void
handle_echo_reply( uint64_t datapath_id, uint32_t xid, const buffer *data, void *user_data ) {
  UNUSED( datapath_id );
  UNUSED( xid );
  UNUSED( data );
  UNUSED( user_data );

  info( "received: OFPT_ECHO_REPLY" );
}


int
main( int argc, char *argv[] ) {
  init_trema( &argc, &argv );

  if ( argc < 2 ) {
    usage();
    return -1;
  }

  int count = atoi( argv[ 1 ] );
  set_switch_ready_handler( send_echo_requests, &count );
  set_echo_reply_handler( handle_echo_reply, NULL );

  start_trema();

  return 0;
}


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

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
trema-0.4.7 src/examples/openflow_message/echo.c
trema-0.4.6 src/examples/openflow_message/echo.c
trema-0.4.5 src/examples/openflow_message/echo.c
trema-0.4.4 src/examples/openflow_message/echo.c
trema-0.4.3 src/examples/openflow_message/echo.c
trema-0.4.2 src/examples/openflow_message/echo.c
trema-0.4.1 src/examples/openflow_message/echo.c
trema-0.4.0 src/examples/openflow_message/echo.c
trema-0.3.21 src/examples/openflow_message/echo.c
trema-0.3.20 src/examples/openflow_message/echo.c
trema-0.3.19 src/examples/openflow_message/echo.c
trema-0.3.18 src/examples/openflow_message/echo.c
trema-0.3.17 src/examples/openflow_message/echo.c
trema-0.3.16 src/examples/openflow_message/echo.c
trema-0.3.15 src/examples/openflow_message/echo.c
trema-0.3.14 src/examples/openflow_message/echo.c
trema-0.3.13 src/examples/openflow_message/echo.c
trema-0.3.12 src/examples/openflow_message/echo.c
trema-0.3.11 src/examples/openflow_message/echo.c
trema-0.3.10 src/examples/openflow_message/echo.c