Skip to content

Instantly share code, notes, and snippets.

@jonahwilliams
Created April 25, 2020 17:32
Show Gist options
  • Save jonahwilliams/adf535e6c0039869e4720114f2d47a4f to your computer and use it in GitHub Desktop.
Save jonahwilliams/adf535e6c0039869e4720114f2d47a4f to your computer and use it in GitHub Desktop.
#include <arpa/inet.h>
#include <stdio.h>
int main() {
char * address = "fe80::ec4:7aff:fecc:ea8f%eno0";
char * out;
printf("%d\n", inet_pton(AF_INET6, address, &out));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment