We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The enum for representing an IP address type is inconsistently named.
The word evidence needs to be removed from the typedef.
evidence
typedef enum e_fiftyone_degrees_ip_evidence_type { FIFTYONE_DEGREES_IP_TYPE_INVALID = 0, /**< Invalid IP address */ FIFTYONE_DEGREES_IP_TYPE_IPV4 = 4, /**< An IPv4 address */ FIFTYONE_DEGREES_IP_TYPE_IPV6 = 6, /**< An IPv6 address */ } fiftyoneDegreesIpType;
typedef enum e_fiftyone_degrees_ip_type { FIFTYONE_DEGREES_IP_TYPE_INVALID = 0, /**< Invalid IP address */ FIFTYONE_DEGREES_IP_TYPE_IPV4 = 4, /**< An IPv4 address */ FIFTYONE_DEGREES_IP_TYPE_IPV6 = 6, /**< An IPv6 address */ } fiftyoneDegreesIpType;
The text was updated successfully, but these errors were encountered:
drasmart
No branches or pull requests
The enum for representing an IP address type is inconsistently named.
The word
evidence
needs to be removed from the typedef.The text was updated successfully, but these errors were encountered: