mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-09-12 21:50:17 +00:00
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:
parent
276bf42e0d
commit
4e32615ab7
1 changed files with 4 additions and 0 deletions
|
|
@ -207,19 +207,23 @@ struct url_s
|
|||
{
|
||||
FAR char *scheme;
|
||||
int schemelen;
|
||||
#if 0 /* not yet */
|
||||
FAR char *user;
|
||||
int userlen;
|
||||
FAR char *password;
|
||||
int passwordlen;
|
||||
#endif
|
||||
FAR char *host;
|
||||
int hostlen;
|
||||
int port;
|
||||
FAR char *path;
|
||||
int pathlen;
|
||||
#if 0 /* not yet */
|
||||
FAR char *parameters;
|
||||
int parameterslen;
|
||||
FAR char *bookmark;
|
||||
int bookmarklen;
|
||||
#endif
|
||||
};
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue