ns2中结构体定义

2024-01-25 12:18
文章标签 定义 结构 ns2

本文主要是介绍ns2中结构体定义,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、hdr_cmn,位于文件:/ns-allinone-2.34/ns-2.34/common/packet.h,570行
struct hdr_cmn {
      enum dir_t { DOWN= -1, NONE= 0, UP= 1 };
      packet_t ptype_;      // 包类型,84行开始
      int      size_;            // simulated packet size
      int      uid_;            // unique id
      int      error_;            // error flag
      int        errbitcnt_;        // # of corrupted bits jahn
      int        fecsize_;
      double      ts_;            // timestamp: for q-delay measurement
      int      iface_;            // receiving interface (label)
      dir_t      direction_;      // direction: 0=none, 1=up, -1=down
      // source routing
              char src_rt_valid;
      double ts_arr_; // Required by Marker of JOBS

      //Monarch extn begins
      nsaddr_t prev_hop_;        // IP addr of forwarding hop
      nsaddr_t next_hop_;      // next hop for this packet
      int          addr_type_;      // type of next_hop_ addr
      nsaddr_t last_hop_;        // for tracing on multi-user channels
     
      // AOMDV patch
      int aomdv_salvage_count_;
     
              // called if pkt can't obtain media or isn't ack'd. not called if
              // droped by a queue
              FailureCallback xmit_failure_;
              void *xmit_failure_data_;

             
              int        xmit_reason_;
#define XMIT_REASON_RTS 0x01
#define XMIT_REASON_ACK 0x02

              // filled in by GOD on first transmission, used for trace analysis
              int num_forwards_;      // how many times this pkt was forwarded
              int opt_num_forwards_;    // optimal #forwards
      // Monarch extn ends;

      // tx time for this packet in sec
      double txtime_;
      inline double& txtime() { return(txtime_); }

      static int offset_;      // offset for this header
      inline static int& offset() { return offset_; }
      inline static hdr_cmn* access(const Packet* p) {
            return (hdr_cmn*) p->access(offset_);
      }
     
             
      inline packet_t& ptype() { return (ptype_); }
      inline int& size() { return (size_); }
      inline int& uid() { return (uid_); }
      inline int& error() { return error_; }
      inline int& errbitcnt() {return errbitcnt_; }
      inline int& fecsize() {return fecsize_; }
      inline double& timestamp() { return (ts_); }
      inline int& iface() { return (iface_); }
      inline dir_t& direction() { return (direction_); }
      // monarch_begin
      inline nsaddr_t& next_hop() { return (next_hop_); }
      inline int& addr_type() { return (addr_type_); }
      inline int& num_forwards() { return (num_forwards_); }
      inline int& opt_num_forwards() { return (opt_num_forwards_); }
              //monarch_end

      ModulationScheme mod_scheme_;
      inline ModulationScheme& mod_scheme() { return (mod_scheme_); }
};
2、hdr_ip,位于文件:/ns-allinone-2.34/ns-2.34/common/ip.h,58行
struct hdr_ip {
     
      ns_addr_t      src_;
      ns_addr_t      dst_;
      int            ttl_;

     
//       u_int16_t      sport_;
//       u_int16_t      dport_;
     
     
      int            fid_;     
      int            prio_;

      static int offset_;
      inline static int& offset() { return offset_; }
      inline static hdr_ip* access(const Packet* p) {
            return (hdr_ip*) p->access(offset_);
      }

     
      ns_addr_t& src() { return (src_); }
      nsaddr_t& saddr() { return (src_.addr_); }
              int32_t& sport() { return src_.port_;}

      ns_addr_t& dst() { return (dst_); }
      nsaddr_t& daddr() { return (dst_.addr_); }
              int32_t& dport() { return dst_.port_;}
      int& ttl() { return (ttl_); }
     
      int& flowid() { return (fid_); }
      int& prio() { return (prio_); }
};

这篇关于ns2中结构体定义的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/643236

相关文章

Java中switch-case结构的使用方法举例详解

《Java中switch-case结构的使用方法举例详解》:本文主要介绍Java中switch-case结构使用的相关资料,switch-case结构是Java中处理多个分支条件的一种有效方式,它... 目录前言一、switch-case结构的基本语法二、使用示例三、注意事项四、总结前言对于Java初学者

结构体和联合体的区别及说明

《结构体和联合体的区别及说明》文章主要介绍了C语言中的结构体和联合体,结构体是一种自定义的复合数据类型,可以包含多个成员,每个成员可以是不同的数据类型,联合体是一种特殊的数据结构,可以在内存中共享同一... 目录结构体和联合体的区别1. 结构体(Struct)2. 联合体(Union)3. 联合体与结构体的

PostgreSQL如何查询表结构和索引信息

《PostgreSQL如何查询表结构和索引信息》文章介绍了在PostgreSQL中查询表结构和索引信息的几种方法,包括使用`d`元命令、系统数据字典查询以及使用可视化工具DBeaver... 目录前言使用\d元命令查看表字段信息和索引信息通过系统数据字典查询表结构通过系统数据字典查询索引信息查询所有的表名可

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

自定义类型:结构体(续)

目录 一. 结构体的内存对齐 1.1 为什么存在内存对齐? 1.2 修改默认对齐数 二. 结构体传参 三. 结构体实现位段 一. 结构体的内存对齐 在前面的文章里我们已经讲过一部分的内存对齐的知识,并举出了两个例子,我们再举出两个例子继续说明: struct S3{double a;int b;char c;};int mian(){printf("%zd\n",s

Spring 源码解读:自定义实现Bean定义的注册与解析

引言 在Spring框架中,Bean的注册与解析是整个依赖注入流程的核心步骤。通过Bean定义,Spring容器知道如何创建、配置和管理每个Bean实例。本篇文章将通过实现一个简化版的Bean定义注册与解析机制,帮助你理解Spring框架背后的设计逻辑。我们还将对比Spring中的BeanDefinition和BeanDefinitionRegistry,以全面掌握Bean注册和解析的核心原理。

OpenCV结构分析与形状描述符(11)椭圆拟合函数fitEllipse()的使用

操作系统:ubuntu22.04 OpenCV版本:OpenCV4.9 IDE:Visual Studio Code 编程语言:C++11 算法描述 围绕一组2D点拟合一个椭圆。 该函数计算出一个椭圆,该椭圆在最小二乘意义上最好地拟合一组2D点。它返回一个内切椭圆的旋转矩形。使用了由[90]描述的第一个算法。开发者应该注意,由于数据点靠近包含的 Mat 元素的边界,返回的椭圆/旋转矩形数据

C语言程序设计(选择结构程序设计)

一、关系运算符和关系表达式 1.1关系运算符及其优先次序 ①<(小于) ②<=(小于或等于) ③>(大于) ④>=(大于或等于 ) ⑤==(等于) ⑥!=(不等于) 说明: 前4个优先级相同,后2个优先级相同,关系运算符的优先级低于算术运算符,关系运算符的优先级高于赋值运算符 1.2关系表达式 用关系运算符将两个表达式(可以是算术表达式或关系表达式,逻辑表达式,赋值表达式,字符

Science|癌症中三级淋巴结构的免疫调节作用与治疗潜力|顶刊精析·24-09-08

小罗碎碎念 Science文献精析 今天精析的这一篇综述,于2022-01-07发表于Science,主要讨论了癌症中的三级淋巴结构(Tertiary Lymphoid Structures, TLS)及其在肿瘤免疫反应中的作用。 作者类型作者姓名单位名称(中文)通讯作者介绍第一作者Ton N. Schumacher荷兰癌症研究所通讯作者之一通讯作者Daniela S. Thomm

浙大数据结构:树的定义与操作

四种遍历 #include<iostream>#include<queue>using namespace std;typedef struct treenode *BinTree;typedef BinTree position;typedef int ElementType;struct treenode{ElementType data;BinTree left;BinTre