Source code: https://github.com/bagder/gw-mac
If you have working IPv6 addresses in your Windows. Working as in you can communicate with other machines over it.
$ git clone https://github.com/bagder/gw-mac.git
| #include <sys/types.h> | |
| #include <sys/stat.h> | |
| #include <unistd.h> | |
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #define INPUT "Rgn02.txt" | |
| #define WIDTH 8 /* 6 bytes + CRLF */ | |
| unsigned char there[(2<<15)*16*16*2]; |
| diff --git a/lib/url.c b/lib/url.c | |
| index dd3f62d..48016e2 100644 | |
| --- a/lib/url.c | |
| +++ b/lib/url.c | |
| @@ -5451,15 +5451,20 @@ static CURLcode parse_remote_port(struct Curl_easy *data, | |
| else if(rest != &portptr[1]) { | |
| *portptr = '\0'; /* cut off the name there */ | |
| conn->remote_port = curlx_ultous(port); | |
| } |
| /*************************************************************************** | |
| * _ _ ____ _ | |
| * Project ___| | | | _ \| | | |
| * / __| | | | |_) | | | |
| * | (__| |_| | _ <| |___ | |
| * \___|\___/|_| \_\_____| | |
| * | |
| * Copyright (C) 1998 - 2016, Daniel Stenberg, <[email protected]>, et al. | |
| * | |
| * This software is licensed as described in the file COPYING, which |
| #!/bin/sh | |
| ./maketgz 7.55.0-test | |
| tar xf curl-7.55.0-test.tar.gz | |
| cd curl-7.55.0-test | |
| ./configure --prefix=/tmp/curl-remove | |
| make -sj | |
| make install | |
| ls /tmp/curl-remove/share/man/man3/ |
| #!/usr/bin/perl | |
| # un-preprocessed _changes-file as input | |
| require "./vuln.pm"; | |
| sub vernum { | |
| my ($ver)=@_; | |
| my @v = split('\.', $ver); | |
| return ($v[0] << 16) | ($v[1] << 8) | $v[2]; |
Source code: https://github.com/bagder/gw-mac
If you have working IPv6 addresses in your Windows. Working as in you can communicate with other machines over it.
$ git clone https://github.com/bagder/gw-mac.git
| daniel@daniel-win7 e:/win-src/gecko-dev | |
| $ mach build | |
| c:\mozilla-build\mozmake\mozmake.EXE -f client.mk MOZ_PARALLEL_BUILD=6 -s configure | |
| perl: warning: Setting locale failed. | |
| perl: warning: Please check that your locale settings: | |
| LC_ALL = (unset), | |
| LANG = "SVE" | |
| are supported and installed on your system. | |
| perl: warning: Falling back to the standard locale ("C"). | |
| Generating e:/win-src/gecko-dev/configure |
| # install the basics | |
| sudo apt install autoconf automake libtool libssl-dev libssh2-1-dev libz-dev libnghttp2-dev libpsl-dev | |
| mkdir $HOME/src | |
| cd $HOME/src | |
| git clone https://github.com/curl/curl.git | |
| cd curl | |
| ./buildconf | |
| ./configure --enable-debug --enable-maintainer-mode --disable-shared |