X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/9223880adde1ff3d7b8941ca474eab9acfa862c5..71c7635f30fb0ac9067f8d1e5cdab4fe992d6291:/src/surf/ns3/ns3_simulator.h diff --git a/src/surf/ns3/ns3_simulator.h b/src/surf/ns3/ns3_simulator.h index dce821b559..c69c1a8d41 100644 --- a/src/surf/ns3/ns3_simulator.h +++ b/src/surf/ns3/ns3_simulator.h @@ -1,25 +1,46 @@ -/* Copyright (c) 2007, 2008, 2009, 2010. The SimGrid Team. - * All rights reserved. */ +/* Copyright (c) 2007-2017. The SimGrid Team. All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ -#ifndef _NS3_SIM_H -#define _NS3_SIM_H +#ifndef NS3_SIM_H +#define NS3_SIM_H -#ifdef __cplusplus +#include -//Simulator s; -class NS3Sim { - NS3Sim(); - ~NS3Sim(); +#include "ns3_interface.h" -private: +#include +#include +#include +#include +#include +#include +#include +class SgFlow { public: - + SgFlow(uint32_t totalBytes, simgrid::surf::NetworkNS3Action* action); + + // private: + std::uint32_t bufferedBytes_ = 0; + std::uint32_t sentBytes_ = 0; + std::uint32_t remaining_; + std::uint32_t totalBytes_; + bool finished_ = false; + simgrid::surf::NetworkNS3Action* action_; }; -#endif /* __cplusplus */ +void StartFlow(ns3::Ptr sock, const char* to, uint16_t port_number); + +static inline const char* transformSocketPtr(ns3::Ptr localSocket) +{ + static char key[24]; + std::stringstream sstream; + sstream << localSocket; + snprintf(key, 24, "%s", sstream.str().c_str()); + + return key; +} #endif