fetch: refactor verbosity option handling into transport.[ch]
[gitweb.git] / transport.h
index c4314dd59b5831996b6ddb92072c629a1f029b2c..7d1a0b6b36dcf5cf4f7199fdb9e588441b849228 100644 (file)
@@ -74,7 +74,7 @@ struct transport {
        int (*disconnect)(struct transport *connection);
        char *pack_lockfile;
        signed verbose : 3;
-       /* Force progress even if the output is not a tty */
+       /* Force progress even if stderr is not a tty */
        unsigned progress : 1;
        /*
         * If transport is at least potentially smart, this points to
@@ -122,6 +122,7 @@ struct transport *transport_get(struct remote *, const char *);
  **/
 int transport_set_option(struct transport *transport, const char *name,
                         const char *value);
+void transport_set_verbosity(struct transport *transport, int verbosity);
 
 int transport_push(struct transport *connection,
                   int refspec_nr, const char **refspec, int flags,