connect.hon commit Merge branch 'sb/t5400-remove-unused' (3d2c1bf)
   1#ifndef CONNECT_H
   2#define CONNECT_H
   3
   4#define CONNECT_VERBOSE       (1u << 0)
   5#define CONNECT_DIAG_URL      (1u << 1)
   6extern struct child_process *git_connect(int fd[2], const char *url, const char *prog, int flags);
   7extern int finish_connect(struct child_process *conn);
   8extern int git_connection_is_socket(struct child_process *conn);
   9extern int server_supports(const char *feature);
  10extern int parse_feature_request(const char *features, const char *feature);
  11extern const char *server_feature_value(const char *feature, int *len_ret);
  12extern int url_is_local_not_ssh(const char *url);
  13
  14#endif