trema/trema-edge

View on GitHub
src/lib/trema.h

Summary

Maintainability
Test Coverage
/*
 * Trema common functions.
 *
 * Author: Yasuhito Takamiya <yasuhito@gmail.com>
 *
 * 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.
 */


#ifndef TREMA_H
#define TREMA_H


#include "array_util.h"
#include "async.h"
#include "async_lock.h"
#include "async_util.h"
#include "bool.h"
#include "buffer.h"
#include "byteorder.h"
#include "checks.h"
#include "doubly_linked_list.h"
#include "etherip.h"
#include "event_handler.h"
#include "hash_table.h"
#include "linked_list.h"
#include "log.h"
#include "match_table.h"
#include "message_queue.h"
#include "messenger.h"
#include "openflow_application_interface.h"
#include "openflow_message.h"
#include "openflow_switch_interface.h"
#include "oxm_match.h"
#include "oxm_byteorder.h"
#include "packet_info.h"
#include "packetin_filter_interface.h"
#include "persistent_storage.h"
#include "safe_event_handler.h"
#include "safe_timer.h"
#include "stat.h"
#include "timer.h"
#include "utility.h"
#include "wrapper.h"

extern const char DEFAULT_DUMP_SERVICE_NAME[];


void init_trema( int *argc, char ***argv );
void start_trema( void );
void start_trema_up();
void start_trema_down();
void stop_trema( void );
void flush( void );
const char *get_trema_home( void );
const char *get_trema_tmp( void );
void set_trema_name( const char *name );
const char *get_trema_name( void );
const char *get_executable_name( void );
pid_t get_trema_process_from_name( const char *name );
bool terminate_trema_process( pid_t pid );
__attribute__( ( weak ) ) void usage( void );


#endif // TREMA_H


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