mirror of
https://github.com/apache/nuttx-apps.git
synced 2025-10-24 03:03:57 +08: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:

committed by
Xiang Xiao

parent
276bf42e0d
commit
4e32615ab7
@@ -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
|
||||
|
||||
|
Reference in New Issue
Block a user