netlib: #if 0 out unimplemented fields in url_s

- Avoid giving a wrong impression to users
- Save a little memory
This commit is contained in:
YAMAMOTO Takashi 2020-05-27 14:10:04 +09:00 committed by Xiang Xiao
parent 276bf42e0d
commit 4e32615ab7

@ -207,19 +207,23 @@ struct url_s
{ {
FAR char *scheme; FAR char *scheme;
int schemelen; int schemelen;
#if 0 /* not yet */
FAR char *user; FAR char *user;
int userlen; int userlen;
FAR char *password; FAR char *password;
int passwordlen; int passwordlen;
#endif
FAR char *host; FAR char *host;
int hostlen; int hostlen;
int port; int port;
FAR char *path; FAR char *path;
int pathlen; int pathlen;
#if 0 /* not yet */
FAR char *parameters; FAR char *parameters;
int parameterslen; int parameterslen;
FAR char *bookmark; FAR char *bookmark;
int bookmarklen; int bookmarklen;
#endif
}; };
#endif #endif