Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVicent Martí <tanoku@gmail.com>2011-09-22 21:17:43 +0400
committerVicent Martí <tanoku@gmail.com>2011-09-22 21:17:43 +0400
commit8114ee4c950d035388f1191081fbe77d9a9f3017 (patch)
treea1cfd43c33d8c8d56bf23d91f24bd5bb9840f24e /src/netops.h
parente1b86444676b70154bf8ab450d429bdef57a8276 (diff)
parent4ee8418a0877d1c2f48459bb266342b127fc7d87 (diff)
Merge pull request #405 from carlosmn/http-ls
Implement ls-remote over HTTP
Diffstat (limited to 'src/netops.h')
-rw-r--r--src/netops.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/netops.h b/src/netops.h
index 1aa7aebac..0d962ef61 100644
--- a/src/netops.h
+++ b/src/netops.h
@@ -29,4 +29,6 @@ int gitno_connect(const char *host, const char *port);
int gitno_send(int s, const char *msg, size_t len, int flags);
int gitno_select_in(gitno_buffer *buf, long int sec, long int usec);
+int gitno_extract_host_and_port(char **host, char **port, const char *url, const char *default_port);
+
#endif