Sha256: 08f6f7d231bcebc6e32eb8eb7109598ae3297804e36e2e0d81a8b6718ef2f8db

Contents?: true

Size: 1.93 KB

Versions: 11

Compression:

Stored size: 1.93 KB

Contents

/*
 * Sends echo_request messages to the specified datapath ID.
 *
 * 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 <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

11 entries across 11 versions & 1 rubygems

Version Path
trema-0.3.9 src/examples/openflow_message/echo.c
trema-0.3.8 src/examples/openflow_message/echo.c
trema-0.3.7 src/examples/openflow_message/echo.c
trema-0.3.6 src/examples/openflow_message/echo.c
trema-0.3.5 src/examples/openflow_message/echo.c
trema-0.3.4 src/examples/openflow_message/echo.c
trema-0.3.3 src/examples/openflow_message/echo.c
trema-0.3.2 src/examples/openflow_message/echo.c
trema-0.3.1 src/examples/openflow_message/echo.c
trema-0.3.0 src/examples/openflow_message/echo.c
trema-0.2.8 src/examples/openflow_message/echo.c