Hello, I have a problem with the structure FIPv4Address. I can not write:
FIPv4Address::Parse(Ip, Address);
Why does the compiler not see:
public static NETWORKING_API bool Parse(const FString& AddressString, FIPv4Address& OutAddress);
How to access this function?
MrMcKvarz
(MrMcKvarz)
2
You need to add “Networking” module in your build.cs file and add “Networking/Public/Interfaces/IPv4/IPv4Address.h” where you use parse function.
I did this, but the problem is that I can write:
FIPv4Address::FIPv4Address(IpAddres.A, IpAddres.B, IpAddres.C, IpAddres.D);
But I can not write:
FIPv4Address::Parse(Ip, Address);
Because only this function is not visible (and others with definition NETWORKING_API).
King_S.J
(King_S.J)
4
I am facing the same problem, did you find any solution?