Skip to content

Commit

Permalink
Towards 1.0 release.
Browse files Browse the repository at this point in the history
- Fix timeouts (#7).
- Update version.
- Blacklist more MS "phone home" domains.
  • Loading branch information
basil00 committed Feb 5, 2018
1 parent ed876cf commit ea7447b
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 8 deletions.
8 changes: 4 additions & 4 deletions Makefile
@@ -1,9 +1,9 @@
CC = i686-w64-mingw32-gcc
WINDRES = i686-w64-mingw32-windres
CFLAGS = --std=c99 -O2 -I contrib/WinDivert-1.4.0-rc-B-MINGW/include/ \
-mwindows -mthreads -mno-ms-bitfields -m32 -Wall
CLIBS = -lws2_32 -lkernel32 -L contrib/WinDivert-1.4.0-rc-B-MINGW/x86/ \
-lWinDivert -lcomctl32 -mwindows
CFLAGS = --std=c99 -O2 -I contrib/$(WINDIVERT)/include/ -mwindows -mthreads \
-mno-ms-bitfields -m32 -Wall -DVERSION=$(VERSION)
CLIBS = -lws2_32 -lkernel32 -L contrib/$(WINDIVERT)/x86/ -lWinDivert \
-lcomctl32 -mwindows
OBJS = main.o redirect.o domain.o
PROG = tallow.exe

Expand Down
2 changes: 0 additions & 2 deletions README.md
Expand Up @@ -107,8 +107,6 @@ TODOS
Warnings
========

Tallow is beta quality software. There may be bugs.

Currently Tallow makes no attempt to anonymize the content of traffic sent
*through* the Tor network. This information may be used to de-anonymize you.
See [this
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Expand Up @@ -50,7 +50,7 @@ unzip -o $TOR.zip

echo "Building Tallow..."
cd ..
make
make VERSION=$VERSION WINDIVERT=$WINDIVERT

echo "Copying \"tallow.exe\"..."
cp tallow.exe install/.
Expand Down
2 changes: 2 additions & 0 deletions hosts.deny
Expand Up @@ -16,6 +16,8 @@ spynet2.microsoft.com
spynettest.microsoft.com
sqm.microsoft.com
watson.microsoft.com
data.microsoft.com
mp.microsoft.com
msftncsi.com

# Common ad servers:
Expand Down
2 changes: 1 addition & 1 deletion main.c
Expand Up @@ -319,7 +319,7 @@ int WINAPI WinMain(HINSTANCE instance, HINSTANCE prev_instance,
}

// (2) Create the window:
window = CreateWindow(PROGNAME "_WINDOW", PROGNAME " (beta)",
window = CreateWindow(PROGNAME "_WINDOW", PROGNAME " " STR(VERSION),
WS_OVERLAPPEDWINDOW & (~WS_THICKFRAME),
CW_USEDEFAULT, CW_USEDEFAULT, WINDOW_SIZE_X, WINDOW_SIZE_Y,
NULL, NULL, instance, NULL);
Expand Down
2 changes: 2 additions & 0 deletions torrc
@@ -1,3 +1,5 @@
# Tallow default torrc file.
GeoIPFile "geoip"
GeoIPv6File "geoip6"
FascistFirewall 1
FirewallPorts 9001,9030

0 comments on commit ea7447b

Please sign in to comment.