trimstray / htrace.sh

My simple Swiss Army knife for http/https troubleshooting and profiling.
GNU General Public License v3.0
3.75k stars 233 forks source link

Disable filter for req methods. #78

Closed trimstray closed 5 years ago

trimstray commented 5 years ago
# if [[ "$req_method_type" != "GET" ]] && \
#    [[ "$req_method_type" != "HEAD" ]] && \
#    [[ "$req_method_type" != "POST" ]] && \
#    [[ "$req_method_type" != "PUT" ]] && \
#    [[ "$req_method_type" != "DELETE" ]] && \
#    [[ "$req_method_type" != "CONNECT" ]] && \
#    [[ "$req_method_type" != "OPTIONS" ]] && \
#    [[ "$req_method_type" != "TRACE" ]] ; then

Set GET request method if req_method_type is empty.