ネットワークをシミュレートするためにomnet ++を学習しています。Windows 7でomnet ++を使用してシミュレーションプログラムを実行できません
package helloworld.simulations;
import inet.networklayer.configurator.ipv4.FlatNetworkConfigurator;
import inet.node.inet.Router;
import inet.node.inet.StandardHost;
@license(LGPL);
network Network
{
@display("bgb=519,314");
submodules:
Client: StandardHost {
@display("p=82,217");
}
router: Router {
@display("p=218,117");
}
Server: StandardHost {
@display("p=361,198");
}
flatNetworkConfigurator: FlatNetworkConfigurator {
@display("p=296,46;b=45,44");
}
connections:
Client.ethg++ <--> router.ethg++;
router.ethg++ <--> Server.ethg++;
}
し、次のようにomnetpp.ini内のコードを示します:次のようにpackeage.ned内のコードが表示され
[General]
network = helloworld.simulations.Network
**.Client.numTcpApps = 1
**.Client.tcpApp[0].typename = "TCPBasicClientApp"
**.Client.tcpApp[0].connectAddress = "Server"
**.Client.tcpApp[0].connectPort = 80
**.Client.tcpApp[0].thinkTime = 0s
**.Client.tcpApp[0].idleInterval = 0s
**.Server.numTcpApps = 1
**.Server.tcpApp[0].typename = "TCPEchoApp"
**.Server.tcpApp[0].localPort = 80
**.ppp[*].queueType = "DropTailQueue"
**.ppp[*].queue.frameCapacity = 10
しかし、私はこのプログラムを実行すると、私は次のような問題が発生しました:enter image description here
ここでは、この問題を解決する方法はありません。ご協力ありがとうございました!
ありがとうございました。申し訳ありません、私は初心者です。私はまだ問題があります。私はmingwコンソールに文字列を入力し、次の結果を取得しています。firstAvailableOrEmpty:string firstAvailableOrEmpty(...) 次に、どのようにするのですか?ありがとうございました! – user3395974
あなたのサンプルをINET内の新しいプロジェクトまたはフォルダとしてどのように作成しましたか? –
私は新しいプロジェクトとして私の例を作成します。 INET内のフォルダではありません。 – user3395974