| Commit message (Expand) | Author | Age | Files | Lines |
| * | benchmarks: quick-run scripts for mitmproxy and mitmdump | Aldo Cortesi | 2018-05-08 | 2 | -0/+4 |
| * | benchmark: keep track of requests/responses seen by proxy | Aldo Cortesi | 2018-05-08 | 1 | -0/+10 |
| * | options: add the concept of deferred settings | Aldo Cortesi | 2018-05-08 | 1 | -1/+10 |
| * | remove leftover processing_complete | Maximilian Hils | 2018-05-06 | 1 | -3/+1 |
| * | Remove allowremote addon, add an improved take called block | Aldo Cortesi | 2018-05-06 | 2 | -61/+63 |
| * | Merge pull request #3099 from Kriechi/fix-3024 | Aldo Cortesi | 2018-05-06 | 1 | -13/+35 |
| |\ |
|
| | * | fix #3024 | Thomas Kri#
# Copyright (C) 2007-2015 OpenWrt.org
#
# This is free software, licensed under the GNU General Public License v2.
# See /LICENSE for more information.
#
TMP_DIR ?= $(TOPDIR)/tmp
ifeq ($(if $(TARGET_BUILD),,$(DUMP)),)
-include $(TMP_DIR)/.host.mk
endif
ifneq ($(__host_inc),1)
__host_inc:=1
export PATH:=$(TOPDIR)/staging_dir/host/bin:$(PATH)
try-run = $(shell set -e; \
TMP_F="$(TMP_DIR)/try-run.$$$$.tmp"; \
if ($(1)) >/dev/null 2>&1; then echo "$(2)"; else echo "$(3)"; fi; \
rm -f "$$TMP_F"; \
)
host-cc-option = $(call try-run, \
$(HOSTCC) $(HOST_CFLAGS) $(1) -c -xc /dev/null -o "$$TMP_F",$(1),$(2) \
)
.PRECIOUS: $(TMP_DIR)/.host.mk
$(TMP_DIR)/.host.mk: $(TOPDIR)/include/host.mk
@mkdir -p $(TMP_DIR)
@( \
HOST_OS=`uname`; \
case "< | 5 | -51323/+0< Linux) HOST_ARCH=`uname -m`;; \
Darwin) HOST_ARCH= | 7 | -75/+64 |
| |/ |
|
| * | Merge pull request #3059 from obscure76/enh/issue-3053 | Aldo Cortesi | 2018-04-16 | 1 | -1/+1 |
| |\ |
|
| | * | fix Python 3.6 variable type annotations #3053 | oscure76 | 2018-04-14 | 1 | -1/+1 |
| * | | Merge pull request #3050 from kira0204/error-script | Aldo Cortesi | 2018-04-15 | 2 | -7/+23 |
| |\ \ |
|
| | * | | Handling user script exceptions, fix #2839 | kira0204 | 2018-04-10 | 2 | -7/+23 |
| | |/ |
|
| * / | readfile: add a readfile_filter option | Aldo Cortesi | 2018-04-14 | 1 | -39/+55 |
| |/ |
|
| * | asyncio: ditch the handler context | Aldo Cortesi | 2018-04-07 | 2 | -2/+4 |
| * | asyncio: remove master.add_log, in favor of a persistent log.Log instance | Aldo Cortesi | 2018-04-07 | 1 | -1/+1 |
| * | asyncio: remove test master.has_log | Aldo Cortesi | 2018-04-07 | 6 | -28/+38 |
| * | asyncio: move log mechanism onto the event loop | Aldo Cortesi | 2018-04-07 | 17 | -91/+114 |
| * | asyncio simplify: we don't need a queue for proxy->main loop comms | Aldo Cortesi | 2018-04-07 | 8 | -63/+65 |
| * | asyncio: remove last vestiage of channel input from master | Aldo Cortesi | 2018-04-07 | 1 | -10/+9 |
| * | Merge pull request #3031 from itzikBraun/add-httpie-export | Aldo Cortesi | 2018-04-06 | 1 | -1/+29 |
| |\ |
|
| | * | added option to export request as httpie command | itzikBraun | 2018-04-02 | 1 | -1/+29 |
| * | | Merge pull request #2971 from kira0204/user-script-exception | Aldo Cortesi | 2018-04-06 | 1 | -3/+15 |
| |\ \ |
|
| | * | | use error handler function | kira0204 | 2018-03-26 | 1 | -3/+3 |
| | * | | User script exception handler[squash] | kira0204 | 2018-03-07 | 1 | -0/+12 |
| * | | | fix http retry timeout | Maximilian Hils | 2018-04-05 | 1 | -38/+6 |
| * | | | minor fixes | Aldo Cortesi | 2018-04-03 | 2 | -10/+4 |
| * | | | asyncio: factor out test server startup wait | Aldo Cortesi | 2018-04-03 | 3 | -12/+7 |
| * | | | asyncio: cleanup and lint | Aldo Cortesi | 2018-04-02 | 2 | -2/+7 |
| * | | | asyncio: test cleanup | Aldo Cortesi | 2018-04-02 | 3 | -8/+18 |
| * | | | asyncio: make http2 tests pass | Aldo Cortesi | 2018-04-02 | 2 | -2/+6 |
| * | | | asyncio: fix a few remaining issues in proxy/test_server.py | Aldo Cortesi | 2018-04-02 | 2 | -9/+14 |
| * | | | asyncio: fix channel interface and tests | Aldo Cortesi | 2018-04-01 | 2 | -19/+23 |