Results 19 issues of Mani Amoozadeh

Is there any ways to define the value range for a specific struct member using a schema. For example, in here: https://github.com/tlsa/libcyaml/blob/eda1ae8caf27bddeb39bd0dd34763daa641bdadc/examples/planner/main.c#L135 Is there any ways to restrict the user...

Examples are here: https://github.com/ManiAm/inet/tree/INETex/examples_INETex/STP

Feature

The routing table of nodes is messy and a sorting mechanism should be incorporated to make it more readable. For example look at the routing table of a router: ![2018-05-07_10-44-23](https://user-images.githubusercontent.com/5473998/39715928-a7f50c3c-51e3-11e8-8b63-38d406eacbc8.png)...

Feature

I am having trouble changing the ipv4 address of a loopback interface. Please take a look at Step23 in OSPF examples in here: https://github.com/ManiAm/inet/blob/INETex/examples_INETex/routing_protocol_ospf/omnetpp.ini Apparently changing the loopback address has...

Feature

The transportRouteVisualizer does not work for this specific TCP scenario. Simulation configuration: ``` [Config Step1] description = Dynamic routing with AODV when nodes are fixed network = Network *.configurator.addStaticRoutes =...

Feature

When the static route assignment is active in the Ipv4NetworkConfigurator module, MANUAL routes of type DIRECT might be redundant since they are already added by the interface (IFACENETMASK). As an...

Feature

In the IPv4Configurator config parameter, interfaces are referred to as eth0, eth1, but in the RIP config, interface names are referred to as eth[0] or eth[1]. IPv4 config: ``` ```...

Feature

[Feature Request] I noticed that the ARP module has a gratuitous ARP method to send out such messages, however that method is never called. When a device boots up, it...

Feature

I was looking at the udpapp example. ![2019-09-21_0-46-04](https://user-images.githubusercontent.com/5473998/65370037-7529c980-dc09-11e9-98b5-16443cef567a.png) The way UDP socket is laid out is a little bit confusing especially for those who have done network socket programming. 1....

Bug

IGMPv3 supports `source filtering` and apparently it is implmeted in INET, however, there is no way to test this feature. The IGMPv3 gets the source list from the receiveSignal: https://github.com/inet-framework/inet/blob/14dcdbe8a8338467ea0939433f45b9fe223cc2f6/src/inet/networklayer/ipv4/Igmpv3.cc#L488...

Bug