File: strerror.tcl

package info (click to toggle)
tclcurl 7.22.0%2Bhg20160822-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,328 kB
  • ctags: 331
  • sloc: ansic: 4,264; tcl: 860; sh: 155; makefile: 30
file content (14 lines) | stat: -rwxr-xr-x 482 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package require TclCurl

puts "The error string for code 6 is '[curl::easystrerror 6]'"

puts "If the number is too big: '[curl::easystrerror 2000]'"

puts "It works the same way for the multi interface: '[curl::multistrerror 1]'"
puts "And the share interface: '[curl::sharestrerror 1]'"

catch {curl::easystrerror frelled} errorMsg
puts "And if we use a nonsensical code: '$errorMsg'"

catch {curl::sharestrerror} errorMsg
puts "And if we forget the error code:\n    '$errorMsg'"