From 4d94719cf982033183a5d641ef741f5e229d212d Mon Sep 17 00:00:00 2001 From: patacongo Date: Sat, 28 Mar 2009 19:49:28 +0000 Subject: Add wget command to NSH git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@1657 42af7a65-404d-4744-a932-0658087f49c3 --- nuttx/include/net/uip/webclient.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'nuttx/include') diff --git a/nuttx/include/net/uip/webclient.h b/nuttx/include/net/uip/webclient.h index 053dd5613..13787e2db 100644 --- a/nuttx/include/net/uip/webclient.h +++ b/nuttx/include/net/uip/webclient.h @@ -96,7 +96,7 @@ */ typedef void (*wget_callback_t)(FAR char **buffer, int offset, - int datend, FAR int *buflen); + int datend, FAR int *buflen, FAR void *arg); /**************************************************************************** * Public Function Prototypes @@ -130,6 +130,7 @@ extern "C" { * buflen - The size of the user provided buffer * callback - As data is obtained from the host, this function is * to dispose of each block of file data as it is received. + * arg - User argument passed to callback. * * Returned Value: * 0: if the GET operation completed successfully; @@ -138,7 +139,7 @@ extern "C" { ****************************************************************************/ EXTERN int wget(FAR const char *url, FAR char *buffer, int buflen, - wget_callback_t callback); + wget_callback_t callback, FAR void *arg); #undef EXTERN #ifdef __cplusplus -- cgit v1.2.3