/* * Copyright (C) 2001 - 2004 Mike Wray * * This library is free software; you can redistribute it and/or modify * it under the terms of the GNU Lesser General Public License as published by * the Free Software Foundation; either version 2.1 of the License, or * (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public License * along with this library; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include "iostream.h" #include "sys_string.h" /** Print on a stream, like vfprintf(). * * @param stream to print to * @param format for the print (as fprintf()) * @param args arguments to print * @return result code from the print */ int IOStream_vprint(IOStream *stream, const char *format, va_list args){ char buffer[1024]; int k = sizeof(buffer), n; n = vsnprintf(buffer, k, (char*)format, args); if(n < 0 || n > k ){ n = k; } n = IOStream_write(stream, buffer, n); return n; } /** Print on a stream, like fprintf(). * * @param stream to print to * @param format for the print (as fprintf()) * @return result code from the print */ int IOStream_print(IOStream *stream, const char *format, ...){ va_list args; int result = -1; va_start(args, format); result = IOStream_vprint(stream, format, args); va_end(args); return result; } /cloud-email/mitmproxy/commit/examples/stream_modify.py?id=9f77c80a327e7c409f0971b9d83ff3a67c2da231'>commitdiffstats
path: root/examples/stream_modify.py
blob: aa395c03f79be9c87b568acd779e2c05af0e19f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
"""
This inline script modifies a streamed response.
If you do not need streaming, see the modify_response_body example.
Be aware that content replacement isn't trivial:
    - If the transfer encoding isn't chunked, you cannot simply change the content length.
    - If you want to replace all occurences of "foobar", make sure to catch the cases
      where one chunk ends with [...]foo" and the next starts with "bar[...].
"""


def modify(chunks):
    """
    chunks is a generator that can be used to iterate over all chunks.
    """
    for chunk in chunks:
        yield chunk.replace("foo", "bar")


def responseheaders(context, flow):
    flow.response.stream = modify