Nothing
# See iptools.cpp for is_multicast
#'@rdname is_checks
#'@export
is_ipv4 <- function(ip_addresses){
return((ip_classify(ip_addresses) == "IPv4"))
}
#'@rdname is_checks
#'@export
is_ipv6 <- function(ip_addresses){
return((ip_classify(ip_addresses) == "IPv6"))
}
#'@rdname is_checks
#'@export
is_valid <- function(ip_addresses){
return((ip_classify(ip_addresses) != "Invalid"))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.