diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2019-12-01 10:06:11 +1100 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2020-01-24 09:54:29 -0600 |
commit | 297c61e41f23caacb39d8c00957fd5ec050c9cbf (patch) | |
tree | dddef32bc863764eebb183da2319fe0a10678b73 /src/net.c | |
parent | a194e17f9793eb960745243dde3eabfd60b65b56 (diff) | |
download | libgit2-297c61e41f23caacb39d8c00957fd5ec050c9cbf.tar.gz |
net: add an isvalid function
(Also, mark all the declarations as extern.)
Diffstat (limited to 'src/net.c')
-rw-r--r-- | src/net.c | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -153,6 +153,11 @@ done: return error; } +bool git_net_url_valid(git_net_url *url) +{ + return (url->host && url->port && url->path); +} + int git_net_url_is_default_port(git_net_url *url) { return (strcmp(url->port, default_port_for_scheme(url->scheme)) == 0); |