Skip to content
Open
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
76d2f02
Put class declaration into header file.
Aug 4, 2024
44d4952
Style: remove invisible ^L characters
Aug 4, 2024
73fbdce
Add curl compilation and runtime option
Aug 6, 2024
e11a8bf
Add curl initialization option.
Aug 7, 2024
377795a
Add record to set CURLOPT_HTTPAUTH
Aug 7, 2024
39d9b34
Add record to set CURLOPT_SSL_VERIFYHOST
Aug 7, 2024
702fc78
Add record for setting CURLOPT_SSL_VERIFYPEER
Aug 7, 2024
308d666
Get rid of unnecessary itemp variable.
Aug 7, 2024
2906040
Add record to set CURLOPT_USERNAME (beware)
Aug 7, 2024
0176dc2
Add record for setting CURLOPT_PASSWORD (beware)
Aug 7, 2024
78d9c2c
Add records to set config filepath
Aug 7, 2024
b9ca193
Add curl file loading functionality
Aug 15, 2024
116434e
Add writeCallback and buffer. Use it on readImage.
Aug 21, 2024
404f5dc
Fix: add needed set of CURLOPT_URL
Aug 21, 2024
8cff152
Style: remove trailing whitespaces.
Aug 21, 2024
d11dec2
Merge branch 'add-config-file' into add-curl-option
Aug 21, 2024
de4f1ad
Add WITH_CURL example in CONFIG_SITE
Aug 21, 2024
32681b4
Merge branch 'add-curl-option'
Aug 21, 2024
b55dc74
Add driver description in ADURL.rst
Aug 22, 2024
1208fb1
Add comments in st_base example file
Aug 22, 2024
2aec6fd
Add comments in code
Aug 22, 2024
01698b2
Merge branch 'documentation' into add-curl-option
Aug 22, 2024
1b1c03f
Merge branch 'add-curl-option'
Aug 22, 2024
dbe0454
Change driver modification/revision numbers
Aug 23, 2024
af80cc7
Update RELEASE with curl modifications
Aug 23, 2024
992a83d
Merge branch 'doc' into add-curl-option
Aug 23, 2024
74aa1a6
Merge branch 'add-curl-option'
Aug 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change driver modification/revision numbers
Since this PR is supposed to add new functionality, I reset patch number
and add to revision number.
  • Loading branch information
marcofilho committed Aug 23, 2024
commit dbe04545b757a25ff7afc30616c11902ca86cde3
4 changes: 2 additions & 2 deletions urlApp/src/URLDriver.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
#endif

#define DRIVER_VERSION 2
#define DRIVER_REVISION 3
#define DRIVER_MODIFICATION 1
#define DRIVER_REVISION 4
#define DRIVER_MODIFICATION 0

/** URL driver; reads images from URLs, such as Web cameras and Axis video servers, but also files, etc. */
class URLDriver : public ADDriver {
Expand Down