00001 /* 00002 * Copyright 2004-2006 Intel Corporation 00003 * 00004 * Licensed under the Apache License, Version 2.0 (the "License"); 00005 * you may not use this file except in compliance with the License. 00006 * You may obtain a copy of the License at 00007 * 00008 * http://www.apache.org/licenses/LICENSE-2.0 00009 * 00010 * Unless required by applicable law or agreed to in writing, software 00011 * distributed under the License is distributed on an "AS IS" BASIS, 00012 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 00013 * See the License for the specific language governing permissions and 00014 * limitations under the License. 00015 */ 00016 00017 #ifndef _TR_AGENT_H 00018 #define _TR_AGENT_H 00019 00020 #include <oasys/debug/DebugUtils.h> 00021 #include <oasys/debug/Log.h> 00022 #include <oasys/thread/Timer.h> 00023 00024 #include "SimEvent.h" 00025 #include "SimEventHandler.h" 00026 #include "naming/EndpointID.h" 00027 00028 namespace dtnsim { 00029 class Node; 00030 00031 class TrAgent : public oasys::Timer, public oasys::Logger { 00032 public: 00033 static TrAgent* init(const EndpointID& src, const EndpointID& dst, 00034 int argc, const char** argv); 00035 00036 virtual ~TrAgent() {} 00037 00038 void timeout(const struct timeval& now); 00039 00040 private: 00041 TrAgent(const EndpointID& src, const EndpointID& dst); 00042 00043 void send_bundle(); 00044 00045 EndpointID src_; 00046 EndpointID dst_; 00047 u_int64_t size_; 00048 u_int expiration_; 00049 u_int reps_; 00050 u_int batch_; 00051 double interval_; 00052 }; 00053 00054 } // namespace dtnsim 00055 00056 #endif /* _TR_AGENT_H */