diff options
author | Carlos Martín Nieto <carlos@cmartin.tk> | 2011-06-16 00:39:35 +0200 |
---|---|---|
committer | Carlos Martín Nieto <carlos@cmartin.tk> | 2011-06-26 20:43:44 +0200 |
commit | 1b4f814025ca0c48477fb074929cd15f41f4f68f (patch) | |
tree | f1576c16332026da91cd764423f7897160beb2c5 /src/netops.h | |
parent | 7632e2494a5b8bfea41e7fbfaa0fc324e2178932 (diff) | |
download | libgit2-1b4f814025ca0c48477fb074929cd15f41f4f68f.tar.gz |
Create netops and start moving git:// to it
Signed-off-by: Carlos Martín Nieto <carlos@cmartin.tk>
Diffstat (limited to 'src/netops.h')
-rw-r--r-- | src/netops.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/netops.h b/src/netops.h new file mode 100644 index 000000000..10627d486 --- /dev/null +++ b/src/netops.h @@ -0,0 +1,9 @@ +/* + * netops.h - convencience functions for networking + */ +#ifndef INCLUDE_netops_h__ +#define INCLUDE_netops_h__ + +int gitno_connect(const char *host, const char *port); + +#endif |