UNPKG

socksv5

Version:

SOCKS protocol version 5 server and client implementations for node.js

30 lines (21 loc) 785 B
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <title>Simple IPv6 test</title> <script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script> <script type="text/javascript" src="../../lib/browser/jsbn.js"></script> <script type="text/javascript" src="../../lib/browser/jsbn2.js"></script> <script type="text/javascript" src="../../lib/browser/sprintf.js"></script> <script type="text/javascript" src="../../ipv6.js"></script> <script type="text/javascript"> $(function() { var address6 = new v6.Address('a::b'); $('#output').text(address6.canonicalForm()); }); </script> </head> <body> The canonical form of <code>a::b</code> is: <code id="output"></code> </body> </html>