#include <omnetpp.h>
#include "ICMPv6.h"
Functions | |
| Define_Module (ICMPv6) | |
| ICMPv6Message * | createParamProblemMsg (int code) |
|
|
00232 {
00233 ICMPv6ParamProblemMsg *errorMsg
00234 = new ICMPv6ParamProblemMsg("Parameter Problem");
00235 errorMsg->setType(ICMPv6_PARAMETER_PROBLEM);
00236 errorMsg->setCode(code);
00237 //TODO: What Pointer? section 3.4
00238 return errorMsg;
00239 }
|
|
|
|
1.4.1