glib2 2.2.4-x64-mingw32
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/README +40 -0
- data/Rakefile +157 -0
- data/ext/glib2/depend +18 -0
- data/ext/glib2/extconf.rb +80 -0
- data/ext/glib2/glib2.def +147 -0
- data/ext/glib2/rbgcompat.h +29 -0
- data/ext/glib2/rbglib.c +1158 -0
- data/ext/glib2/rbglib.h +202 -0
- data/ext/glib2/rbglib2conversions.h +57 -0
- data/ext/glib2/rbglib_bookmarkfile.c +546 -0
- data/ext/glib2/rbglib_convert.c +197 -0
- data/ext/glib2/rbglib_error.c +164 -0
- data/ext/glib2/rbglib_fileutils.c +119 -0
- data/ext/glib2/rbglib_gettext.c +48 -0
- data/ext/glib2/rbglib_i18n.c +40 -0
- data/ext/glib2/rbglib_int64.c +165 -0
- data/ext/glib2/rbglib_io_constants.c +30 -0
- data/ext/glib2/rbglib_iochannel.c +824 -0
- data/ext/glib2/rbglib_iochannel_win32_socket.c +56 -0
- data/ext/glib2/rbglib_iochannelerror.c +49 -0
- data/ext/glib2/rbglib_keyfile.c +755 -0
- data/ext/glib2/rbglib_maincontext.c +565 -0
- data/ext/glib2/rbglib_mainloop.c +121 -0
- data/ext/glib2/rbglib_messages.c +148 -0
- data/ext/glib2/rbglib_pollfd.c +112 -0
- data/ext/glib2/rbglib_shell.c +64 -0
- data/ext/glib2/rbglib_shellerror.c +34 -0
- data/ext/glib2/rbglib_source.c +242 -0
- data/ext/glib2/rbglib_spawn.c +245 -0
- data/ext/glib2/rbglib_spawnerror.c +53 -0
- data/ext/glib2/rbglib_threads.c +61 -0
- data/ext/glib2/rbglib_timer.c +127 -0
- data/ext/glib2/rbglib_ucs4.c +79 -0
- data/ext/glib2/rbglib_unichar.c +201 -0
- data/ext/glib2/rbglib_unicode.c +90 -0
- data/ext/glib2/rbglib_utf16.c +78 -0
- data/ext/glib2/rbglib_utf8.c +257 -0
- data/ext/glib2/rbglib_utils.c +339 -0
- data/ext/glib2/rbglib_win32.c +112 -0
- data/ext/glib2/rbglibdeprecated.c +56 -0
- data/ext/glib2/rbglibdeprecated.h +34 -0
- data/ext/glib2/rbgobj_boxed.c +295 -0
- data/ext/glib2/rbgobj_closure.c +345 -0
- data/ext/glib2/rbgobj_convert.c +195 -0
- data/ext/glib2/rbgobj_enumflags.c +109 -0
- data/ext/glib2/rbgobj_enums.c +401 -0
- data/ext/glib2/rbgobj_flags.c +522 -0
- data/ext/glib2/rbgobj_object.c +885 -0
- data/ext/glib2/rbgobj_param.c +378 -0
- data/ext/glib2/rbgobj_paramspecs.c +311 -0
- data/ext/glib2/rbgobj_signal.c +978 -0
- data/ext/glib2/rbgobj_strv.c +44 -0
- data/ext/glib2/rbgobj_type.c +846 -0
- data/ext/glib2/rbgobj_typeinstance.c +128 -0
- data/ext/glib2/rbgobj_typeinterface.c +149 -0
- data/ext/glib2/rbgobj_typemodule.c +72 -0
- data/ext/glib2/rbgobj_typeplugin.c +57 -0
- data/ext/glib2/rbgobj_value.c +395 -0
- data/ext/glib2/rbgobj_valuearray.c +100 -0
- data/ext/glib2/rbgobj_valuetypes.c +243 -0
- data/ext/glib2/rbgobject.c +387 -0
- data/ext/glib2/rbgobject.h +301 -0
- data/ext/glib2/rbgprivate.h +178 -0
- data/ext/glib2/rbgutil.c +183 -0
- data/ext/glib2/rbgutil.h +119 -0
- data/ext/glib2/rbgutil_callback.c +272 -0
- data/ext/glib2/rbgutil_list.c +173 -0
- data/ext/glib2/rbgutil_list.h +85 -0
- data/ext/glib2/rbgutildeprecated.c +252 -0
- data/ext/glib2/rbgutildeprecated.h +63 -0
- data/extconf.rb +49 -0
- data/lib/2.0/glib2.so +0 -0
- data/lib/2.1/glib2.so +0 -0
- data/lib/2.2/glib2.so +0 -0
- data/lib/glib-mkenums.rb +214 -0
- data/lib/glib2.rb +231 -0
- data/lib/glib2/deprecatable.rb +153 -0
- data/lib/gnome2-raketask.rb +8 -0
- data/lib/gnome2/rake/external-package.rb +227 -0
- data/lib/gnome2/rake/native-binary-build-task.rb +129 -0
- data/lib/gnome2/rake/package-task.rb +273 -0
- data/lib/gnome2/rake/package.rb +152 -0
- data/lib/gnome2/rake/source-download-task.rb +82 -0
- data/lib/gnome2/rake/windows-binary-build-task.rb +303 -0
- data/lib/gnome2/rake/windows-binary-download-task.rb +181 -0
- data/lib/mkmf-gnome2.rb +637 -0
- data/sample/bookmarkfile.rb +66 -0
- data/sample/idle.rb +41 -0
- data/sample/iochannel.rb +44 -0
- data/sample/keyfile.rb +62 -0
- data/sample/shell.rb +36 -0
- data/sample/spawn.rb +25 -0
- data/sample/timeout.rb +28 -0
- data/sample/timeout2.rb +35 -0
- data/sample/timer.rb +40 -0
- data/sample/type-register.rb +103 -0
- data/sample/type-register2.rb +104 -0
- data/sample/utils.rb +54 -0
- data/test/glib-test-init.rb +5 -0
- data/test/glib-test-utils.rb +12 -0
- data/test/run-test.rb +21 -0
- data/test/test_enum.rb +99 -0
- data/test/test_file_utils.rb +53 -0
- data/test/test_flags.rb +129 -0
- data/test/test_glib2.rb +122 -0
- data/test/test_iochannel.rb +275 -0
- data/test/test_key_file.rb +42 -0
- data/test/test_mkenums.rb +25 -0
- data/test/test_poll_fd.rb +26 -0
- data/test/test_signal.rb +20 -0
- data/test/test_source.rb +63 -0
- data/test/test_spawn.rb +33 -0
- data/test/test_timeout.rb +28 -0
- data/test/test_unicode.rb +394 -0
- data/test/test_utils.rb +37 -0
- data/test/test_value.rb +31 -0
- data/test/test_win32.rb +13 -0
- data/vendor/local/bin/certtool.exe +0 -0
- data/vendor/local/bin/danetool.exe +0 -0
- data/vendor/local/bin/envsubst.exe +0 -0
- data/vendor/local/bin/gdbus-codegen +39 -0
- data/vendor/local/bin/gdbus.exe +0 -0
- data/vendor/local/bin/gettext.exe +0 -0
- data/vendor/local/bin/gettext.sh +121 -0
- data/vendor/local/bin/gio-querymodules.exe +0 -0
- data/vendor/local/bin/glib-compile-resources.exe +0 -0
- data/vendor/local/bin/glib-compile-schemas.exe +0 -0
- data/vendor/local/bin/glib-genmarshal.exe +0 -0
- data/vendor/local/bin/glib-gettextize +187 -0
- data/vendor/local/bin/glib-mkenums +565 -0
- data/vendor/local/bin/gnutls-cli-debug.exe +0 -0
- data/vendor/local/bin/gnutls-cli.exe +0 -0
- data/vendor/local/bin/gnutls-serv.exe +0 -0
- data/vendor/local/bin/gobject-query.exe +0 -0
- data/vendor/local/bin/gresource.exe +0 -0
- data/vendor/local/bin/gsettings.exe +0 -0
- data/vendor/local/bin/gspawn-win64-helper-console.exe +0 -0
- data/vendor/local/bin/gspawn-win64-helper.exe +0 -0
- data/vendor/local/bin/iconv.exe +0 -0
- data/vendor/local/bin/libasprintf-0.dll +0 -0
- data/vendor/local/bin/libcharset-1.dll +0 -0
- data/vendor/local/bin/libffi-6.dll +0 -0
- data/vendor/local/bin/libgio-2.0-0.dll +0 -0
- data/vendor/local/bin/libglib-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmodule-2.0-0.dll +0 -0
- data/vendor/local/bin/libgmp-10.dll +0 -0
- data/vendor/local/bin/libgnutls-28.def +861 -0
- data/vendor/local/bin/libgnutls-28.dll +0 -0
- data/vendor/local/bin/libgnutls-openssl-27.dll +0 -0
- data/vendor/local/bin/libgnutls-openssl-28.def +228 -0
- data/vendor/local/bin/libgnutls-xssl-0.dll +0 -0
- data/vendor/local/bin/libgnutls-xssl-28.def +13 -0
- data/vendor/local/bin/libgobject-2.0-0.dll +0 -0
- data/vendor/local/bin/libgthread-2.0-0.dll +0 -0
- data/vendor/local/bin/libhogweed-2-5.dll +0 -0
- data/vendor/local/bin/libiconv-2.dll +0 -0
- data/vendor/local/bin/libintl-8.dll +0 -0
- data/vendor/local/bin/libnettle-4-7.dll +0 -0
- data/vendor/local/bin/nettle-hash.exe +0 -0
- data/vendor/local/bin/nettle-lfib-stream.exe +0 -0
- data/vendor/local/bin/ngettext.exe +0 -0
- data/vendor/local/bin/ocsptool.exe +0 -0
- data/vendor/local/bin/pkcs1-conv.exe +0 -0
- data/vendor/local/bin/psktool.exe +0 -0
- data/vendor/local/bin/sexp-conv.exe +0 -0
- data/vendor/local/bin/srptool.exe +0 -0
- data/vendor/local/include/autosprintf.h +67 -0
- data/vendor/local/include/gio-win32-2.0/gio/gwin32inputstream.h +82 -0
- data/vendor/local/include/gio-win32-2.0/gio/gwin32outputstream.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gaction.h +98 -0
- data/vendor/local/include/glib-2.0/gio/gactiongroup.h +161 -0
- data/vendor/local/include/glib-2.0/gio/gactiongroupexporter.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gactionmap.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gappinfo.h +313 -0
- data/vendor/local/include/glib-2.0/gio/gapplication.h +236 -0
- data/vendor/local/include/glib-2.0/gio/gapplicationcommandline.h +122 -0
- data/vendor/local/include/glib-2.0/gio/gasyncinitable.h +124 -0
- data/vendor/local/include/glib-2.0/gio/gasyncresult.h +85 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedinputstream.h +133 -0
- data/vendor/local/include/glib-2.0/gio/gbufferedoutputstream.h +86 -0
- data/vendor/local/include/glib-2.0/gio/gbytesicon.h +52 -0
- data/vendor/local/include/glib-2.0/gio/gcancellable.h +118 -0
- data/vendor/local/include/glib-2.0/gio/gcharsetconverter.h +63 -0
- data/vendor/local/include/glib-2.0/gio/gcontenttype.h +71 -0
- data/vendor/local/include/glib-2.0/gio/gconverter.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gconverterinputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gconverteroutputstream.h +80 -0
- data/vendor/local/include/glib-2.0/gio/gcredentials.h +85 -0
- data/vendor/local/include/glib-2.0/gio/gdatainputstream.h +180 -0
- data/vendor/local/include/glib-2.0/gio/gdataoutputstream.h +125 -0
- data/vendor/local/include/glib-2.0/gio/gdbusactiongroup.h +54 -0
- data/vendor/local/include/glib-2.0/gio/gdbusaddress.h +65 -0
- data/vendor/local/include/glib-2.0/gio/gdbusauthobserver.h +51 -0
- data/vendor/local/include/glib-2.0/gio/gdbusconnection.h +663 -0
- data/vendor/local/include/glib-2.0/gio/gdbuserror.h +109 -0
- data/vendor/local/include/glib-2.0/gio/gdbusinterface.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gdbusinterfaceskeleton.h +127 -0
- data/vendor/local/include/glib-2.0/gio/gdbusintrospection.h +325 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmenumodel.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmessage.h +197 -0
- data/vendor/local/include/glib-2.0/gio/gdbusmethodinvocation.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnameowning.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gdbusnamewatching.h +102 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobject.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanager.h +94 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerclient.h +146 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectmanagerserver.h +93 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectproxy.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gdbusobjectskeleton.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gdbusproxy.h +214 -0
- data/vendor/local/include/glib-2.0/gio/gdbusserver.h +60 -0
- data/vendor/local/include/glib-2.0/gio/gdbusutils.h +55 -0
- data/vendor/local/include/glib-2.0/gio/gdrive.h +259 -0
- data/vendor/local/include/glib-2.0/gio/gemblem.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gemblemedicon.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gfile.h +1250 -0
- data/vendor/local/include/glib-2.0/gio/gfileattribute.h +84 -0
- data/vendor/local/include/glib-2.0/gio/gfileenumerator.h +144 -0
- data/vendor/local/include/glib-2.0/gio/gfileicon.h +57 -0
- data/vendor/local/include/glib-2.0/gio/gfileinfo.h +1070 -0
- data/vendor/local/include/glib-2.0/gio/gfileinputstream.h +114 -0
- data/vendor/local/include/glib-2.0/gio/gfileiostream.h +121 -0
- data/vendor/local/include/glib-2.0/gio/gfilemonitor.h +98 -0
- data/vendor/local/include/glib-2.0/gio/gfilenamecompleter.h +79 -0
- data/vendor/local/include/glib-2.0/gio/gfileoutputstream.h +122 -0
- data/vendor/local/include/glib-2.0/gio/gfilterinputstream.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gfilteroutputstream.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gicon.h +101 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddress.h +124 -0
- data/vendor/local/include/glib-2.0/gio/ginetaddressmask.h +85 -0
- data/vendor/local/include/glib-2.0/gio/ginetsocketaddress.h +78 -0
- data/vendor/local/include/glib-2.0/gio/ginitable.h +99 -0
- data/vendor/local/include/glib-2.0/gio/ginputstream.h +201 -0
- data/vendor/local/include/glib-2.0/gio/gio.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gioenums.h +1816 -0
- data/vendor/local/include/glib-2.0/gio/gioenumtypes.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gioerror.h +53 -0
- data/vendor/local/include/glib-2.0/gio/giomodule.h +169 -0
- data/vendor/local/include/glib-2.0/gio/gioscheduler.h +54 -0
- data/vendor/local/include/glib-2.0/gio/giostream.h +135 -0
- data/vendor/local/include/glib-2.0/gio/giotypes.h +535 -0
- data/vendor/local/include/glib-2.0/gio/gloadableicon.h +99 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryinputstream.h +90 -0
- data/vendor/local/include/glib-2.0/gio/gmemoryoutputstream.h +107 -0
- data/vendor/local/include/glib-2.0/gio/gmenu.h +182 -0
- data/vendor/local/include/glib-2.0/gio/gmenuexporter.h +40 -0
- data/vendor/local/include/glib-2.0/gio/gmenumodel.h +305 -0
- data/vendor/local/include/glib-2.0/gio/gmount.h +276 -0
- data/vendor/local/include/glib-2.0/gio/gmountoperation.h +140 -0
- data/vendor/local/include/glib-2.0/gio/gnativevolumemonitor.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkaddress.h +78 -0
- data/vendor/local/include/glib-2.0/gio/gnetworking.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkmonitor.h +93 -0
- data/vendor/local/include/glib-2.0/gio/gnetworkservice.h +76 -0
- data/vendor/local/include/glib-2.0/gio/gnotification.h +97 -0
- data/vendor/local/include/glib-2.0/gio/goutputstream.h +254 -0
- data/vendor/local/include/glib-2.0/gio/gpermission.h +127 -0
- data/vendor/local/include/glib-2.0/gio/gpollableinputstream.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gpollableoutputstream.h +105 -0
- data/vendor/local/include/glib-2.0/gio/gpollableutils.h +64 -0
- data/vendor/local/include/glib-2.0/gio/gpropertyaction.h +47 -0
- data/vendor/local/include/glib-2.0/gio/gproxy.h +128 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddress.h +86 -0
- data/vendor/local/include/glib-2.0/gio/gproxyaddressenumerator.h +74 -0
- data/vendor/local/include/glib-2.0/gio/gproxyresolver.h +95 -0
- data/vendor/local/include/glib-2.0/gio/gremoteactiongroup.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gresolver.h +212 -0
- data/vendor/local/include/glib-2.0/gio/gresource.h +129 -0
- data/vendor/local/include/glib-2.0/gio/gseekable.h +103 -0
- data/vendor/local/include/glib-2.0/gio/gsettings.h +331 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsbackend.h +158 -0
- data/vendor/local/include/glib-2.0/gio/gsettingsschema.h +104 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleaction.h +59 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleactiongroup.h +97 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleasyncresult.h +162 -0
- data/vendor/local/include/glib-2.0/gio/gsimplepermission.h +45 -0
- data/vendor/local/include/glib-2.0/gio/gsimpleproxyresolver.h +89 -0
- data/vendor/local/include/glib-2.0/gio/gsocket.h +289 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddress.h +82 -0
- data/vendor/local/include/glib-2.0/gio/gsocketaddressenumerator.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsocketclient.h +197 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnectable.h +75 -0
- data/vendor/local/include/glib-2.0/gio/gsocketconnection.h +115 -0
- data/vendor/local/include/glib-2.0/gio/gsocketcontrolmessage.h +109 -0
- data/vendor/local/include/glib-2.0/gio/gsocketlistener.h +150 -0
- data/vendor/local/include/glib-2.0/gio/gsocketservice.h +91 -0
- data/vendor/local/include/glib-2.0/gio/gsrvtarget.h +59 -0
- data/vendor/local/include/glib-2.0/gio/gsubprocess.h +167 -0
- data/vendor/local/include/glib-2.0/gio/gsubprocesslauncher.h +116 -0
- data/vendor/local/include/glib-2.0/gio/gtask.h +158 -0
- data/vendor/local/include/glib-2.0/gio/gtcpconnection.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gtcpwrapperconnection.h +69 -0
- data/vendor/local/include/glib-2.0/gio/gtestdbus.h +72 -0
- data/vendor/local/include/glib-2.0/gio/gthemedicon.h +68 -0
- data/vendor/local/include/glib-2.0/gio/gthreadedsocketservice.h +81 -0
- data/vendor/local/include/glib-2.0/gio/gtlsbackend.h +96 -0
- data/vendor/local/include/glib-2.0/gio/gtlscertificate.h +92 -0
- data/vendor/local/include/glib-2.0/gio/gtlsclientconnection.h +71 -0
- data/vendor/local/include/glib-2.0/gio/gtlsconnection.h +154 -0
- data/vendor/local/include/glib-2.0/gio/gtlsdatabase.h +247 -0
- data/vendor/local/include/glib-2.0/gio/gtlsfiledatabase.h +58 -0
- data/vendor/local/include/glib-2.0/gio/gtlsinteraction.h +148 -0
- data/vendor/local/include/glib-2.0/gio/gtlspassword.h +110 -0
- data/vendor/local/include/glib-2.0/gio/gtlsserverconnection.h +61 -0
- data/vendor/local/include/glib-2.0/gio/gvfs.h +132 -0
- data/vendor/local/include/glib-2.0/gio/gvolume.h +251 -0
- data/vendor/local/include/glib-2.0/gio/gvolumemonitor.h +154 -0
- data/vendor/local/include/glib-2.0/gio/gzlibcompressor.h +62 -0
- data/vendor/local/include/glib-2.0/gio/gzlibdecompressor.h +58 -0
- data/vendor/local/include/glib-2.0/glib-object.h +40 -0
- data/vendor/local/include/glib-2.0/glib-unix.h +119 -0
- data/vendor/local/include/glib-2.0/glib.h +112 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gallocator.h +88 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gcache.h +75 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gcompletion.h +83 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gmain.h +139 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/grel.h +105 -0
- data/vendor/local/include/glib-2.0/glib/deprecated/gthread.h +293 -0
- data/vendor/local/include/glib-2.0/glib/galloca.h +103 -0
- data/vendor/local/include/glib-2.0/glib/garray.h +238 -0
- data/vendor/local/include/glib-2.0/glib/gasyncqueue.h +109 -0
- data/vendor/local/include/glib-2.0/glib/gatomic.h +281 -0
- data/vendor/local/include/glib-2.0/glib/gbacktrace.h +64 -0
- data/vendor/local/include/glib-2.0/glib/gbase64.h +61 -0
- data/vendor/local/include/glib-2.0/glib/gbitlock.h +76 -0
- data/vendor/local/include/glib-2.0/glib/gbookmarkfile.h +255 -0
- data/vendor/local/include/glib-2.0/glib/gbytes.h +90 -0
- data/vendor/local/include/glib-2.0/glib/gcharset.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gchecksum.h +101 -0
- data/vendor/local/include/glib-2.0/glib/gconvert.h +199 -0
- data/vendor/local/include/glib-2.0/glib/gdataset.h +150 -0
- data/vendor/local/include/glib-2.0/glib/gdate.h +309 -0
- data/vendor/local/include/glib-2.0/glib/gdatetime.h +264 -0
- data/vendor/local/include/glib-2.0/glib/gdir.h +64 -0
- data/vendor/local/include/glib-2.0/glib/genviron.h +78 -0
- data/vendor/local/include/glib-2.0/glib/gerror.h +118 -0
- data/vendor/local/include/glib-2.0/glib/gfileutils.h +207 -0
- data/vendor/local/include/glib-2.0/glib/ggettext.h +63 -0
- data/vendor/local/include/glib-2.0/glib/ghash.h +185 -0
- data/vendor/local/include/glib-2.0/glib/ghmac.h +78 -0
- data/vendor/local/include/glib-2.0/glib/ghook.h +202 -0
- data/vendor/local/include/glib-2.0/glib/ghostutils.h +43 -0
- data/vendor/local/include/glib-2.0/glib/gi18n-lib.h +36 -0
- data/vendor/local/include/glib-2.0/glib/gi18n.h +32 -0
- data/vendor/local/include/glib-2.0/glib/giochannel.h +413 -0
- data/vendor/local/include/glib-2.0/glib/gkeyfile.h +320 -0
- data/vendor/local/include/glib-2.0/glib/glist.h +152 -0
- data/vendor/local/include/glib-2.0/glib/gmacros.h +366 -0
- data/vendor/local/include/glib-2.0/glib/gmain.h +614 -0
- data/vendor/local/include/glib-2.0/glib/gmappedfile.h +58 -0
- data/vendor/local/include/glib-2.0/glib/gmarkup.h +262 -0
- data/vendor/local/include/glib-2.0/glib/gmem.h +298 -0
- data/vendor/local/include/glib-2.0/glib/gmessages.h +407 -0
- data/vendor/local/include/glib-2.0/glib/gnode.h +322 -0
- data/vendor/local/include/glib-2.0/glib/goption.h +377 -0
- data/vendor/local/include/glib-2.0/glib/gpattern.h +53 -0
- data/vendor/local/include/glib-2.0/glib/gpoll.h +127 -0
- data/vendor/local/include/glib-2.0/glib/gprimes.h +50 -0
- data/vendor/local/include/glib-2.0/glib/gprintf.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gqsort.h +45 -0
- data/vendor/local/include/glib-2.0/glib/gquark.h +68 -0
- data/vendor/local/include/glib-2.0/glib/gqueue.h +190 -0
- data/vendor/local/include/glib-2.0/glib/grand.h +99 -0
- data/vendor/local/include/glib-2.0/glib/gregex.h +610 -0
- data/vendor/local/include/glib-2.0/glib/gscanner.h +303 -0
- data/vendor/local/include/glib-2.0/glib/gsequence.h +171 -0
- data/vendor/local/include/glib-2.0/glib/gshell.h +59 -0
- data/vendor/local/include/glib-2.0/glib/gslice.h +98 -0
- data/vendor/local/include/glib-2.0/glib/gslist.h +143 -0
- data/vendor/local/include/glib-2.0/glib/gspawn.h +307 -0
- data/vendor/local/include/glib-2.0/glib/gstdio.h +171 -0
- data/vendor/local/include/glib-2.0/glib/gstrfuncs.h +306 -0
- data/vendor/local/include/glib-2.0/glib/gstring.h +189 -0
- data/vendor/local/include/glib-2.0/glib/gstringchunk.h +57 -0
- data/vendor/local/include/glib-2.0/glib/gtestutils.h +421 -0
- data/vendor/local/include/glib-2.0/glib/gthread.h +271 -0
- data/vendor/local/include/glib-2.0/glib/gthreadpool.h +92 -0
- data/vendor/local/include/glib-2.0/glib/gtimer.h +74 -0
- data/vendor/local/include/glib-2.0/glib/gtimezone.h +89 -0
- data/vendor/local/include/glib-2.0/glib/gtrashstack.h +101 -0
- data/vendor/local/include/glib-2.0/glib/gtree.h +104 -0
- data/vendor/local/include/glib-2.0/glib/gtypes.h +482 -0
- data/vendor/local/include/glib-2.0/glib/gunicode.h +860 -0
- data/vendor/local/include/glib-2.0/glib/gurifuncs.h +83 -0
- data/vendor/local/include/glib-2.0/glib/gutils.h +374 -0
- data/vendor/local/include/glib-2.0/glib/gvariant.h +452 -0
- data/vendor/local/include/glib-2.0/glib/gvarianttype.h +380 -0
- data/vendor/local/include/glib-2.0/glib/gversion.h +55 -0
- data/vendor/local/include/glib-2.0/glib/gversionmacros.h +345 -0
- data/vendor/local/include/glib-2.0/glib/gwin32.h +134 -0
- data/vendor/local/include/glib-2.0/gmodule.h +115 -0
- data/vendor/local/include/glib-2.0/gobject/gbinding.h +149 -0
- data/vendor/local/include/glib-2.0/gobject/gboxed.h +122 -0
- data/vendor/local/include/glib-2.0/gobject/gclosure.h +297 -0
- data/vendor/local/include/glib-2.0/gobject/genums.h +273 -0
- data/vendor/local/include/glib-2.0/gobject/glib-types.h +358 -0
- data/vendor/local/include/glib-2.0/gobject/gmarshal.h +385 -0
- data/vendor/local/include/glib-2.0/gobject/gobject.h +672 -0
- data/vendor/local/include/glib-2.0/gobject/gobjectnotifyqueue.c +197 -0
- data/vendor/local/include/glib-2.0/gobject/gparam.h +447 -0
- data/vendor/local/include/glib-2.0/gobject/gparamspecs.h +1164 -0
- data/vendor/local/include/glib-2.0/gobject/gsignal.h +604 -0
- data/vendor/local/include/glib-2.0/gobject/gsourceclosure.h +38 -0
- data/vendor/local/include/glib-2.0/gobject/gtype.h +1990 -0
- data/vendor/local/include/glib-2.0/gobject/gtypemodule.h +278 -0
- data/vendor/local/include/glib-2.0/gobject/gtypeplugin.h +134 -0
- data/vendor/local/include/glib-2.0/gobject/gvalue.h +194 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluearray.h +104 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluecollector.h +254 -0
- data/vendor/local/include/glib-2.0/gobject/gvaluetypes.h +300 -0
- data/vendor/local/include/gmp.h +2301 -0
- data/vendor/local/include/gnutls/abstract.h +454 -0
- data/vendor/local/include/gnutls/compat.h +401 -0
- data/vendor/local/include/gnutls/crypto.h +117 -0
- data/vendor/local/include/gnutls/dtls.h +92 -0
- data/vendor/local/include/gnutls/gnutls.h +2299 -0
- data/vendor/local/include/gnutls/ocsp.h +257 -0
- data/vendor/local/include/gnutls/openpgp.h +366 -0
- data/vendor/local/include/gnutls/openssl.h +329 -0
- data/vendor/local/include/gnutls/pkcs11.h +356 -0
- data/vendor/local/include/gnutls/pkcs12.h +135 -0
- data/vendor/local/include/gnutls/tpm.h +79 -0
- data/vendor/local/include/gnutls/x509.h +1192 -0
- data/vendor/local/include/gnutls/xssl.h +125 -0
- data/vendor/local/include/iconv.h +242 -0
- data/vendor/local/include/libcharset.h +46 -0
- data/vendor/local/include/libintl.h +464 -0
- data/vendor/local/include/localcharset.h +42 -0
- data/vendor/local/include/nettle/aes.h +85 -0
- data/vendor/local/include/nettle/arcfour.h +66 -0
- data/vendor/local/include/nettle/arctwo.h +82 -0
- data/vendor/local/include/nettle/asn1.h +144 -0
- data/vendor/local/include/nettle/base16.h +106 -0
- data/vendor/local/include/nettle/base64.h +153 -0
- data/vendor/local/include/nettle/bignum.h +121 -0
- data/vendor/local/include/nettle/blowfish.h +76 -0
- data/vendor/local/include/nettle/buffer.h +98 -0
- data/vendor/local/include/nettle/camellia.h +82 -0
- data/vendor/local/include/nettle/cast128.h +77 -0
- data/vendor/local/include/nettle/cbc.h +76 -0
- data/vendor/local/include/nettle/ctr.h +62 -0
- data/vendor/local/include/nettle/des-compat.h +154 -0
- data/vendor/local/include/nettle/des.h +111 -0
- data/vendor/local/include/nettle/dsa.h +293 -0
- data/vendor/local/include/nettle/ecc-curve.h +45 -0
- data/vendor/local/include/nettle/ecc.h +261 -0
- data/vendor/local/include/nettle/ecdsa.h +94 -0
- data/vendor/local/include/nettle/gcm.h +186 -0
- data/vendor/local/include/nettle/gosthash94.h +88 -0
- data/vendor/local/include/nettle/hmac.h +202 -0
- data/vendor/local/include/nettle/knuth-lfib.h +75 -0
- data/vendor/local/include/nettle/macros.h +238 -0
- data/vendor/local/include/nettle/md2.h +69 -0
- data/vendor/local/include/nettle/md4.h +73 -0
- data/vendor/local/include/nettle/md5-compat.h +50 -0
- data/vendor/local/include/nettle/md5.h +76 -0
- data/vendor/local/include/nettle/memxor.h +22 -0
- data/vendor/local/include/nettle/nettle-meta.h +232 -0
- data/vendor/local/include/nettle/nettle-stdint.h +286 -0
- data/vendor/local/include/nettle/nettle-types.h +92 -0
- data/vendor/local/include/nettle/pbkdf2.h +77 -0
- data/vendor/local/include/nettle/pgp.h +240 -0
- data/vendor/local/include/nettle/pkcs1.h +106 -0
- data/vendor/local/include/nettle/realloc.h +41 -0
- data/vendor/local/include/nettle/ripemd160.h +78 -0
- data/vendor/local/include/nettle/rsa-compat.h +131 -0
- data/vendor/local/include/nettle/rsa.h +419 -0
- data/vendor/local/include/nettle/salsa20.h +93 -0
- data/vendor/local/include/nettle/serpent.h +81 -0
- data/vendor/local/include/nettle/sexp.h +212 -0
- data/vendor/local/include/nettle/sha.h +34 -0
- data/vendor/local/include/nettle/sha1.h +78 -0
- data/vendor/local/include/nettle/sha2.h +156 -0
- data/vendor/local/include/nettle/sha3.h +176 -0
- data/vendor/local/include/nettle/twofish.h +78 -0
- data/vendor/local/include/nettle/umac.h +241 -0
- data/vendor/local/include/nettle/yarrow.h +137 -0
- data/vendor/local/lib/charset.alias +4 -0
- data/vendor/local/lib/gio/modules/libgiognutls.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.dll.a +0 -0
- data/vendor/local/lib/gio/modules/libgiognutls.la +41 -0
- data/vendor/local/lib/glib-2.0/include/glibconfig.h +199 -0
- data/vendor/local/lib/gthread-2.0.def +3 -0
- data/vendor/local/lib/libasprintf.a +0 -0
- data/vendor/local/lib/libasprintf.dll.a +0 -0
- data/vendor/local/lib/libasprintf.la +41 -0
- data/vendor/local/lib/libcharset.a +0 -0
- data/vendor/local/lib/libcharset.dll.a +0 -0
- data/vendor/local/lib/libcharset.la +41 -0
- data/vendor/local/lib/libffi-3.2.1/include/ffi.h +487 -0
- data/vendor/local/lib/libffi-3.2.1/include/ffitarget.h +150 -0
- data/vendor/local/lib/libffi.a +0 -0
- data/vendor/local/lib/libffi.dll.a +0 -0
- data/vendor/local/lib/libffi.la +41 -0
- data/vendor/local/lib/libgio-2.0.dll.a +0 -0
- data/vendor/local/lib/libgio-2.0.la +41 -0
- data/vendor/local/lib/libglib-2.0.dll.a +0 -0
- data/vendor/local/lib/libglib-2.0.la +41 -0
- data/vendor/local/lib/libgmodule-2.0.dll.a +0 -0
- data/vendor/local/lib/libgmodule-2.0.la +41 -0
- data/vendor/local/lib/libgmp.dll.a +0 -0
- data/vendor/local/lib/libgmp.la +41 -0
- data/vendor/local/lib/libgnutls-openssl.a +0 -0
- data/vendor/local/lib/libgnutls-openssl.dll.a +0 -0
- data/vendor/local/lib/libgnutls-openssl.la +41 -0
- data/vendor/local/lib/libgnutls-xssl.a +0 -0
- data/vendor/local/lib/libgnutls-xssl.dll.a +0 -0
- data/vendor/local/lib/libgnutls-xssl.la +41 -0
- data/vendor/local/lib/libgnutls.a +0 -0
- data/vendor/local/lib/libgnutls.dll.a +0 -0
- data/vendor/local/lib/libgnutls.la +41 -0
- data/vendor/local/lib/libgobject-2.0.dll.a +0 -0
- data/vendor/local/lib/libgobject-2.0.la +41 -0
- data/vendor/local/lib/libgthread-2.0.dll.a +0 -0
- data/vendor/local/lib/libgthread-2.0.la +41 -0
- data/vendor/local/lib/libhogweed.a +0 -0
- data/vendor/local/lib/libhogweed.dll.a +0 -0
- data/vendor/local/lib/libiconv.dll.a +0 -0
- data/vendor/local/lib/libiconv.la +41 -0
- data/vendor/local/lib/libintl.a +0 -0
- data/vendor/local/lib/libintl.dll.a +0 -0
- data/vendor/local/lib/libintl.la +41 -0
- data/vendor/local/lib/libnettle.a +0 -0
- data/vendor/local/lib/libnettle.dll.a +0 -0
- data/vendor/local/lib/pkgconfig/gio-2.0.pc +18 -0
- data/vendor/local/lib/pkgconfig/gio-windows-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/glib-2.0.pc +16 -0
- data/vendor/local/lib/pkgconfig/gmodule-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gmodule-no-export-2.0.pc +14 -0
- data/vendor/local/lib/pkgconfig/gnutls.pc +24 -0
- data/vendor/local/lib/pkgconfig/gobject-2.0.pc +12 -0
- data/vendor/local/lib/pkgconfig/gthread-2.0.pc +11 -0
- data/vendor/local/lib/pkgconfig/hogweed.pc +18 -0
- data/vendor/local/lib/pkgconfig/libffi.pc +11 -0
- data/vendor/local/lib/pkgconfig/nettle.pc +11 -0
- data/vendor/local/lib/pkgconfig/patched +0 -0
- data/vendor/local/share/aclocal/glib-2.0.m4 +211 -0
- data/vendor/local/share/aclocal/glib-gettext.m4 +435 -0
- data/vendor/local/share/aclocal/gsettings.m4 +83 -0
- data/vendor/local/share/bash-completion/completions/gapplication +55 -0
- data/vendor/local/share/bash-completion/completions/gdbus +33 -0
- data/vendor/local/share/bash-completion/completions/gresource +58 -0
- data/vendor/local/share/bash-completion/completions/gsettings +84 -0
- data/vendor/local/share/doc/gettext/bind_textdomain_codeset.3.html +158 -0
- data/vendor/local/share/doc/gettext/bindtextdomain.3.html +154 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext.html +8 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceManager.html +305 -0
- data/vendor/local/share/doc/gettext/csharpdoc/GNU_Gettext_GettextResourceSet.html +356 -0
- data/vendor/local/share/doc/gettext/csharpdoc/begin.html +11 -0
- data/vendor/local/share/doc/gettext/csharpdoc/index.html +10 -0
- data/vendor/local/share/doc/gettext/csharpdoc/namespaces.html +6 -0
- data/vendor/local/share/doc/gettext/envsubst.1.html +139 -0
- data/vendor/local/share/doc/gettext/gettext.1.html +188 -0
- data/vendor/local/share/doc/gettext/gettext.3.html +182 -0
- data/vendor/local/share/doc/gettext/javadoc2/allclasses-frame.html +25 -0
- data/vendor/local/share/doc/gettext/javadoc2/deprecated-list.html +87 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/GettextResource.html +321 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-frame.html +26 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-summary.html +103 -0
- data/vendor/local/share/doc/gettext/javadoc2/gnu/gettext/package-tree.html +99 -0
- data/vendor/local/share/doc/gettext/javadoc2/help-doc.html +136 -0
- data/vendor/local/share/doc/gettext/javadoc2/index-all.html +111 -0
- data/vendor/local/share/doc/gettext/javadoc2/index.html +22 -0
- data/vendor/local/share/doc/gettext/javadoc2/overview-tree.html +96 -0
- data/vendor/local/share/doc/gettext/javadoc2/package-list +1 -0
- data/vendor/local/share/doc/gettext/javadoc2/packages.html +26 -0
- data/vendor/local/share/doc/gettext/javadoc2/serialized-form.html +87 -0
- data/vendor/local/share/doc/gettext/javadoc2/stylesheet.css +29 -0
- data/vendor/local/share/doc/gettext/ngettext.1.html +194 -0
- data/vendor/local/share/doc/gettext/ngettext.3.html +138 -0
- data/vendor/local/share/doc/gettext/textdomain.3.html +140 -0
- data/vendor/local/share/doc/libasprintf/autosprintf_all.html +174 -0
- data/vendor/local/share/doc/libiconv/iconv.1.html +206 -0
- data/vendor/local/share/doc/libiconv/iconv.3.html +207 -0
- data/vendor/local/share/doc/libiconv/iconv_close.3.html +90 -0
- data/vendor/local/share/doc/libiconv/iconv_open.3.html +318 -0
- data/vendor/local/share/doc/libiconv/iconv_open_into.3.html +120 -0
- data/vendor/local/share/doc/libiconv/iconvctl.3.html +189 -0
- data/vendor/local/share/gdb/auto-load/libglib-2.0.so.0.4200.1-gdb.py +10 -0
- data/vendor/local/share/gdb/auto-load/libgobject-2.0.so.0.4200.1-gdb.py +10 -0
- data/vendor/local/share/gettext/ABOUT-NLS +1282 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.py +27 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/__init__.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.py +3412 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.py +329 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_docbook.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.py +201 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/codegen_main.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/config.py +25 -0
- data/vendor/local/share/glib-2.0/codegen/config.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/config.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.py +424 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/dbustypes.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/parser.py +288 -0
- data/vendor/local/share/glib-2.0/codegen/parser.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/parser.pyo +0 -0
- data/vendor/local/share/glib-2.0/codegen/utils.py +102 -0
- data/vendor/local/share/glib-2.0/codegen/utils.pyc +0 -0
- data/vendor/local/share/glib-2.0/codegen/utils.pyo +0 -0
- data/vendor/local/share/glib-2.0/gdb/glib.py +257 -0
- data/vendor/local/share/glib-2.0/gdb/gobject.py +295 -0
- data/vendor/local/share/glib-2.0/gettext/po/Makefile.in.in +268 -0
- data/vendor/local/share/glib-2.0/schemas/gschema.dtd +73 -0
- data/vendor/local/share/glib-2.0/schemas/gschemas.compiled +0 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleAnimal.html +1537 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleCat.html +679 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleObject.html +572 -0
- data/vendor/local/share/gtk-doc/html/gio/ExampleObjectManagerClient.html +561 -0
- data/vendor/local/share/gtk-doc/html/gio/GAction.html +832 -0
- data/vendor/local/share/gtk-doc/html/gio/GActionGroup.html +1242 -0
- data/vendor/local/share/gtk-doc/html/gio/GActionMap.html +507 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfo.html +2160 -0
- data/vendor/local/share/gtk-doc/html/gio/GAppInfoMonitor.html +151 -0
- data/vendor/local/share/gtk-doc/html/gio/GApplication.html +2448 -0
- data/vendor/local/share/gtk-doc/html/gio/GApplicationCommandLine.html +981 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncInitable.html +769 -0
- data/vendor/local/share/gtk-doc/html/gio/GAsyncResult.html +511 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedInputStream.html +705 -0
- data/vendor/local/share/gtk-doc/html/gio/GBufferedOutputStream.html +393 -0
- data/vendor/local/share/gtk-doc/html/gio/GCancellable.html +861 -0
- data/vendor/local/share/gtk-doc/html/gio/GCharsetConverter.html +317 -0
- data/vendor/local/share/gtk-doc/html/gio/GConverter.html +467 -0
- data/vendor/local/share/gtk-doc/html/gio/GCredentials.html +564 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusActionGroup.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusAuthObserver.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusConnection.html +4687 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusInterface.html +329 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusInterfaceSkeleton.html +882 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMenuModel.html +152 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMessage.html +2484 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusMethodInvocation.html +903 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObject.html +404 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManager.html +592 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerClient.html +1281 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectManagerServer.html +505 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectProxy.html +260 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusObjectSkeleton.html +491 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusProxy.html +2170 -0
- data/vendor/local/share/gtk-doc/html/gio/GDBusServer.html +635 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataInputStream.html +1595 -0
- data/vendor/local/share/gtk-doc/html/gio/GDataOutputStream.html +699 -0
- data/vendor/local/share/gtk-doc/html/gio/GDrive.html +1873 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblem.html +354 -0
- data/vendor/local/share/gtk-doc/html/gio/GEmblemedIcon.html +325 -0
- data/vendor/local/share/gtk-doc/html/gio/GFile.html +9688 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileDescriptorBased.html +145 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileEnumerator.html +713 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIOStream.html +352 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileIcon.html +200 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInfo.html +4261 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileInputStream.html +293 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileMonitor.html +475 -0
- data/vendor/local/share/gtk-doc/html/gio/GFileOutputStream.html +345 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilenameCompleter.html +287 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterInputStream.html +249 -0
- data/vendor/local/share/gtk-doc/html/gio/GFilterOutputStream.html +251 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOModule.html +592 -0
- data/vendor/local/share/gtk-doc/html/gio/GIOStream.html +772 -0
- data/vendor/local/share/gtk-doc/html/gio/GIcon.html +479 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetAddress.html +1044 -0
- data/vendor/local/share/gtk-doc/html/gio/GInetSocketAddress.html +419 -0
- data/vendor/local/share/gtk-doc/html/gio/GInitable.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GInputStream.html +1164 -0
- data/vendor/local/share/gtk-doc/html/gio/GLoadableIcon.html +354 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryInputStream.html +308 -0
- data/vendor/local/share/gtk-doc/html/gio/GMemoryOutputStream.html +577 -0
- data/vendor/local/share/gtk-doc/html/gio/GMenu.html +1877 -0
- data/vendor/local/share/gtk-doc/html/gio/GMenuModel.html +1205 -0
- data/vendor/local/share/gtk-doc/html/gio/GMount.html +1929 -0
- data/vendor/local/share/gtk-doc/html/gio/GMountOperation.html +1197 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkAddress.html +451 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkMonitor.html +499 -0
- data/vendor/local/share/gtk-doc/html/gio/GNetworkService.html +421 -0
- data/vendor/local/share/gtk-doc/html/gio/GOutputStream.html +1561 -0
- data/vendor/local/share/gtk-doc/html/gio/GPermission.html +672 -0
- data/vendor/local/share/gtk-doc/html/gio/GPollableInputStream.html +411 -0
- data/vendor/local/share/gtk-doc/html/gio/GPollableOutputStream.html +411 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxy.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyAddress.html +580 -0
- data/vendor/local/share/gtk-doc/html/gio/GProxyResolver.html +395 -0
- data/vendor/local/share/gtk-doc/html/gio/GRemoteActionGroup.html +290 -0
- data/vendor/local/share/gtk-doc/html/gio/GResolver.html +1171 -0
- data/vendor/local/share/gtk-doc/html/gio/GSeekable.html +441 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettings.html +3485 -0
- data/vendor/local/share/gtk-doc/html/gio/GSettingsBackend.html +755 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAction.html +540 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleActionGroup.html +319 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleAsyncResult.html +1634 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimplePermission.html +129 -0
- data/vendor/local/share/gtk-doc/html/gio/GSimpleProxyResolver.html +433 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocket.html +3696 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketAddress.html +374 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketClient.html +2079 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnectable.html +623 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketConnection.html +631 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketControlMessage.html +330 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketListener.html +868 -0
- data/vendor/local/share/gtk-doc/html/gio/GSocketService.html +329 -0
- data/vendor/local/share/gtk-doc/html/gio/GSrvTarget.html +424 -0
- data/vendor/local/share/gtk-doc/html/gio/GSubprocess.html +1601 -0
- data/vendor/local/share/gtk-doc/html/gio/GTask.html +2562 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpConnection.html +209 -0
- data/vendor/local/share/gtk-doc/html/gio/GTcpWrapperConnection.html +211 -0
- data/vendor/local/share/gtk-doc/html/gio/GTestDBus.html +510 -0
- data/vendor/local/share/gtk-doc/html/gio/GThemedIcon.html +464 -0
- data/vendor/local/share/gtk-doc/html/gio/GThreadedSocketService.html +241 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsBackend.html +432 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsCertificate.html +590 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsClientConnection.html +550 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsConnection.html +1294 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsDatabase.html +1091 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsFileDatabase.html +208 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsInteraction.html +735 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsPassword.html +662 -0
- data/vendor/local/share/gtk-doc/html/gio/GTlsServerConnection.html +193 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixConnection.html +553 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixCredentialsMessage.html +268 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDList.html +455 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixFDMessage.html +349 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixInputStream.html +314 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixOutputStream.html +314 -0
- data/vendor/local/share/gtk-doc/html/gio/GUnixSocketAddress.html +612 -0
- data/vendor/local/share/gtk-doc/html/gio/GVfs.html +358 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolume.html +1391 -0
- data/vendor/local/share/gtk-doc/html/gio/GVolumeMonitor.html +926 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibCompressor.html +330 -0
- data/vendor/local/share/gtk-doc/html/gio/GZlibDecompressor.html +220 -0
- data/vendor/local/share/gtk-doc/html/gio/annotation-glossary.html +76 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-18.html +148 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-20.html +157 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-22.html +1083 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-24.html +210 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-26.html +1640 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-28.html +715 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-30.html +686 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-32.html +725 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-34.html +268 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-36.html +259 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-38.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-40.html +369 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-2-42.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-deprecated.html +198 -0
- data/vendor/local/share/gtk-doc/html/gio/api-index-full.html +9512 -0
- data/vendor/local/share/gtk-doc/html/gio/application.html +80 -0
- data/vendor/local/share/gtk-doc/html/gio/async.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch01.html +232 -0
- data/vendor/local/share/gtk-doc/html/gio/ch02.html +114 -0
- data/vendor/local/share/gtk-doc/html/gio/ch03.html +45 -0
- data/vendor/local/share/gtk-doc/html/gio/ch30.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31.html +217 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31s02.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/ch31s03.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32.html +56 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s02.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s03.html +159 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s04.html +46 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s05.html +48 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s06.html +278 -0
- data/vendor/local/share/gtk-doc/html/gio/ch32s07.html +160 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33.html +116 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s02.html +142 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s03.html +202 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s04.html +97 -0
- data/vendor/local/share/gtk-doc/html/gio/ch33s05.html +931 -0
- data/vendor/local/share/gtk-doc/html/gio/conversion.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/extending-gio.html +131 -0
- data/vendor/local/share/gtk-doc/html/gio/extending.html +41 -0
- data/vendor/local/share/gtk-doc/html/gio/failable_initialization.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/file_mon.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/file_ops.html +50 -0
- data/vendor/local/share/gtk-doc/html/gio/gapplication-tool.html +288 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-codegen.html +1098 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-convenience.html +65 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-lowlevel.html +59 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Animal.html +161 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus-org.gtk.GDBus.Example.ObjectManager.Cat.html +51 -0
- data/vendor/local/share/gtk-doc/html/gio/gdbus.html +300 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Addresses.html +390 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Introspection-Data.html +1572 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-D-Bus-Utilities.html +398 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Desktop-file-based-GAppInfo.html +1131 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Extension-Points.html +613 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GActionGroup-exporter.html +192 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GBytesIcon.html +162 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GContentType.html +595 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterInputstream.html +214 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GConverterOutputstream.html +214 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GDBusError.html +1106 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GFileAttribute.html +650 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOError.html +539 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GIOScheduler.html +365 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GInetAddressMask.html +443 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GMenuModel-exporter.html +183 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GNotification.html +670 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GPropertyAction.html +177 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GResource.html +1141 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSettingsSchema-GSettingsSchemaSource.html +1186 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GSubprocessLauncher.html +931 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GWin32InputStream.html +258 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-GWin32OutputStream.html +259 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Owning-Bus-Names.html +658 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-TLS-Overview.html +321 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Unix-Mounts.html +1398 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-Watching-Bus-Names.html +575 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-gnetworking.h.html +94 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-gpollableutils.html +475 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-hierarchy.html +188 -0
- data/vendor/local/share/gtk-doc/html/gio/gio-querymodules.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/gio.devhelp2 +2715 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-resources.html +209 -0
- data/vendor/local/share/gtk-doc/html/gio/glib-compile-schemas.html +111 -0
- data/vendor/local/share/gtk-doc/html/gio/gresource-tool.html +111 -0
- data/vendor/local/share/gtk-doc/html/gio/gsettings-tool.html +178 -0
- data/vendor/local/share/gtk-doc/html/gio/gvfs-overview.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/highlevel-socket.html +60 -0
- data/vendor/local/share/gtk-doc/html/gio/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/icons.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/index.html +646 -0
- data/vendor/local/share/gtk-doc/html/gio/index.sgml +4046 -0
- data/vendor/local/share/gtk-doc/html/gio/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/menu-example.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/menu-model.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/migrating.html +82 -0
- data/vendor/local/share/gtk-doc/html/gio/networking.html +75 -0
- data/vendor/local/share/gtk-doc/html/gio/permissions.html +39 -0
- data/vendor/local/share/gtk-doc/html/gio/pt01.html +40 -0
- data/vendor/local/share/gtk-doc/html/gio/pt02.html +572 -0
- data/vendor/local/share/gtk-doc/html/gio/resolver.html +53 -0
- data/vendor/local/share/gtk-doc/html/gio/resources.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/running-gio-apps.html +189 -0
- data/vendor/local/share/gtk-doc/html/gio/settings.html +42 -0
- data/vendor/local/share/gtk-doc/html/gio/streaming.html +107 -0
- data/vendor/local/share/gtk-doc/html/gio/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gio/subprocesses.html +38 -0
- data/vendor/local/share/gtk-doc/html/gio/testing.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/tls.html +62 -0
- data/vendor/local/share/gtk-doc/html/gio/tools.html +56 -0
- data/vendor/local/share/gtk-doc/html/gio/types.html +44 -0
- data/vendor/local/share/gtk-doc/html/gio/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gio/utils.html +33 -0
- data/vendor/local/share/gtk-doc/html/gio/volume_mon.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_breadth-first_traversal.svg +134 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_inorder.svg +753 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_postorder.svg +750 -0
- data/vendor/local/share/gtk-doc/html/glib/Sorted_binary_tree_preorder.svg +750 -0
- data/vendor/local/share/gtk-doc/html/glib/annotation-glossary.html +81 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-10.html +167 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-12.html +307 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-14.html +562 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-16.html +357 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-18.html +108 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-2.html +119 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-20.html +86 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-22.html +189 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-24.html +423 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-26.html +389 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-28.html +122 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-30.html +252 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-32.html +343 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-34.html +116 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-36.html +116 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-38.html +111 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-4.html +399 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-40.html +158 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-42.html +35 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-6.html +416 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-2-8.html +157 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-deprecated.html +596 -0
- data/vendor/local/share/gtk-doc/html/glib/api-index-full.html +9013 -0
- data/vendor/local/share/gtk-doc/html/glib/deprecated.html +47 -0
- data/vendor/local/share/gtk-doc/html/glib/file-name-encodings.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Arrays.html +1130 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Asynchronous-Queues.html +1242 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Atomic-Operations.html +944 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Automatic-String-Completion.html +614 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Balanced-Binary-Trees.html +958 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Base64-Encoding.html +440 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Basic-Types.html +1155 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Bookmark-file-parser.html +2442 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Arrays.html +1513 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Byte-Order-Macros.html +2152 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Caches.html +540 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Character-Set-Conversion.html +1299 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Commandline-option-parser.html +2164 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-Checksums.html +644 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Data-HMACs.html +549 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Datasets.html +662 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Date-and-Time-Functions.html +2808 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Deprecated-Thread-APIs.html +2101 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Double-ended-Queues.html +1860 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Doubly-Linked-Lists.html +1941 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Dynamic-Loading-of-Modules.html +664 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Error-Reporting.html +1226 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-File-Utilities.html +2516 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GDateTime.html +2430 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GTimeZone.html +664 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariant.html +6967 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-GVariantType.html +1842 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Glob-style-pattern-matching.html +373 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hash-Tables.html +2260 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hook-Functions.html +1817 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Hostname-Utilities.html +287 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-I18N.html +814 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-IO-Channels.html +2662 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Key-value-file-parser.html +3457 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Keyed-Data-Lists.html +1007 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Lexical-Scanner.html +1878 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Allocation.html +1375 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Memory-Slices.html +625 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Message-Logging.html +947 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Macros.html +1180 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Miscellaneous-Utility-Functions.html +2274 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-N-ary-Trees.html +1995 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Numerical-Definitions.html +236 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Perl-compatible-regular-expressions.html +3551 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Pointer-Arrays.html +1059 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Quarks.html +378 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Random-Numbers.html +775 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Relations-and-Tuples.html +660 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Sequences.html +2054 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Shell-related-Utilities.html +302 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Simple-XML-Subset-Parser.html +1491 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Singly-Linked-Lists.html +1560 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Spawning-Processes.html +1165 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Standard-Macros.html +593 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Chunks.html +374 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-String-Utility-Functions.html +4052 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Strings.html +1797 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Testing.html +3149 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-The-Main-Event-Loop.html +5082 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Thread-Pools.html +774 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Threads.html +3183 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Timers.html +319 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Trash-Stacks.html +254 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Type-Conversion-Macros.html +309 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-UNIX-specific-utilities-and-integration.html +618 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-URI-Functions.html +508 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Unicode-Manipulation.html +4995 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Version-Information.html +483 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Warnings-and-Assertions.html +598 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-Windows-Compatibility-Functions.html +585 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-building.html +438 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-changes.html +153 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-compiling.html +145 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-core.html +68 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-cross-compiling.html +165 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-data-types.html +100 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-fundamentals.html +57 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-gettextize.html +96 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-programming.html +76 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-regex-syntax.html +2217 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-resources.html +124 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-running.html +295 -0
- data/vendor/local/share/gtk-doc/html/glib/glib-utilities.html +126 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.devhelp2 +2399 -0
- data/vendor/local/share/gtk-doc/html/glib/glib.html +72 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester-report.html +81 -0
- data/vendor/local/share/gtk-doc/html/glib/gtester.html +187 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-format-strings.html +1338 -0
- data/vendor/local/share/gtk-doc/html/glib/gvariant-text.html +667 -0
- data/vendor/local/share/gtk-doc/html/glib/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/index.html +358 -0
- data/vendor/local/share/gtk-doc/html/glib/index.sgml +2782 -0
- data/vendor/local/share/gtk-doc/html/glib/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/mainloop-states.gif +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/glib/tools.html +41 -0
- data/vendor/local/share/gtk-doc/html/glib/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/glib/up.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/GBinding.html +981 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypeModule.html +814 -0
- data/vendor/local/share/gtk-doc/html/gobject/GTypePlugin.html +558 -0
- data/vendor/local/share/gtk-doc/html/gobject/annotation-glossary.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-10.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-12.html +50 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-14.html +46 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-18.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-2.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-22.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-24.html +68 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-26.html +196 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-28.html +42 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-30.html +65 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-32.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-34.html +58 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-36.html +51 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-38.html +68 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-4.html +173 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-40.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-42.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-6.html +39 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-2-8.html +39 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-deprecated.html +132 -0
- data/vendor/local/share/gtk-doc/html/gobject/api-index-full.html +2999 -0
- data/vendor/local/share/gtk-doc/html/gobject/ch01s02.html +136 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gobject.html +290 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-gtype.html +263 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-intro.html +92 -0
- data/vendor/local/share/gtk-doc/html/gobject/chapter-signal.html +214 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-genmarshal.html +380 -0
- data/vendor/local/share/gtk-doc/html/gobject/glib-mkenums.html +337 -0
- data/vendor/local/share/gtk-doc/html/gobject/glue.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Boxed-Types.html +677 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Closures.html +3510 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Enumeration-and-Flag-Types.html +1110 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-GParamSpec.html +1937 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Generic-values.html +1101 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Signals.html +3395 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Standard-Parameter-and-Value-Types.html +7262 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-The-Base-Object-Type.html +4119 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Type-Information.html +6080 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Value-arrays.html +644 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-Varargs-Value-Collection.html +309 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-memory.html +234 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-properties.html +392 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject-query.html +128 -0
- data/vendor/local/share/gtk-doc/html/gobject/gobject.devhelp2 +838 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-conventions.html +141 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-instantiable-classed.html +288 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable-classed.html +378 -0
- data/vendor/local/share/gtk-doc/html/gobject/gtype-non-instantiable.html +76 -0
- data/vendor/local/share/gtk-doc/html/gobject/home.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-chainup.html +98 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-code.html +88 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-construction.html +172 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-destruction.html +117 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject-methods.html +250 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-gobject.html +270 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-implement.html +137 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-override.html +133 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-prerequisite.html +123 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface-properties.html +153 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-interface.html +149 -0
- data/vendor/local/share/gtk-doc/html/gobject/howto-signals.html +121 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.html +201 -0
- data/vendor/local/share/gtk-doc/html/gobject/index.sgml +869 -0
- data/vendor/local/share/gtk-doc/html/gobject/left-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/left.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/pr01.html +72 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt01.html +80 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt02.html +67 -0
- data/vendor/local/share/gtk-doc/html/gobject/pt03.html +55 -0
- data/vendor/local/share/gtk-doc/html/gobject/right-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/right.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn01.html +85 -0
- data/vendor/local/share/gtk-doc/html/gobject/rn02.html +47 -0
- data/vendor/local/share/gtk-doc/html/gobject/signal.html +378 -0
- data/vendor/local/share/gtk-doc/html/gobject/style.css +476 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-ginspector.html +35 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gob.html +40 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-gtkdoc.html +63 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-refdb.html +48 -0
- data/vendor/local/share/gtk-doc/html/gobject/tools-vala.html +43 -0
- data/vendor/local/share/gtk-doc/html/gobject/up-insensitive.png +0 -0
- data/vendor/local/share/gtk-doc/html/gobject/up.png +0 -0
- data/vendor/local/share/info/autosprintf.info +133 -0
- data/vendor/local/share/info/dir +43 -0
- data/vendor/local/share/info/gmp.info +181 -0
- data/vendor/local/share/info/gmp.info-1 +7073 -0
- data/vendor/local/share/info/gmp.info-2 +3865 -0
- data/vendor/local/share/info/gnutls-client-server-use-case.png +0 -0
- data/vendor/local/share/info/gnutls-guile.info +1589 -0
- data/vendor/local/share/info/gnutls-handshake-sequence.png +0 -0
- data/vendor/local/share/info/gnutls-handshake-state.png +0 -0
- data/vendor/local/share/info/gnutls-internals.png +0 -0
- data/vendor/local/share/info/gnutls-layers.png +0 -0
- data/vendor/local/share/info/gnutls-logo.png +0 -0
- data/vendor/local/share/info/gnutls-modauth.png +0 -0
- data/vendor/local/share/info/gnutls-pgp.png +0 -0
- data/vendor/local/share/info/gnutls-x509.png +0 -0
- data/vendor/local/share/info/gnutls.info +1371 -0
- data/vendor/local/share/info/gnutls.info-1 +7371 -0
- data/vendor/local/share/info/gnutls.info-2 +7842 -0
- data/vendor/local/share/info/gnutls.info-3 +11715 -0
- data/vendor/local/share/info/gnutls.info-4 +6737 -0
- data/vendor/local/share/info/gnutls.info-5 +2308 -0
- data/vendor/local/share/info/libffi.info +765 -0
- data/vendor/local/share/info/pkcs11-vision.png +0 -0
- data/vendor/local/share/license/gettext/AUTHORS +2 -0
- data/vendor/local/share/license/gettext/COPYING +13 -0
- data/vendor/local/share/license/glib-networking/AUTHORS +0 -0
- data/vendor/local/share/license/glib-networking/COPYING +481 -0
- data/vendor/local/share/license/glib/AUTHORS +40 -0
- data/vendor/local/share/license/glib/COPYING +482 -0
- data/vendor/local/share/license/gmp/AUTHORS +100 -0
- data/vendor/local/share/license/gmp/COPYING +674 -0
- data/vendor/local/share/license/gnutls/AUTHORS +92 -0
- data/vendor/local/share/license/gnutls/COPYING +674 -0
- data/vendor/local/share/license/libiconv/AUTHORS +1 -0
- data/vendor/local/share/license/libiconv/COPYING +674 -0
- data/vendor/local/share/license/libiconv/COPYING.LIB +482 -0
- data/vendor/local/share/license/nettle/AUTHORS +1 -0
- data/vendor/local/share/license/nettle/COPYING.LIB +510 -0
- data/vendor/local/share/locale/af/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/am/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/an/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ar/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/as/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ast/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/az/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/be/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/be@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/bg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/bn_IN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/bs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ca/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ca@valencia/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/cs/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/cy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/da/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/de/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/dz/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/el/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@boldquot/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/en@quot/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/en@shaw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/en_CA/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/en_GB/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eo/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/es/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/et/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/eu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fi/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/fr/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/fur/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ga/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/gl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/gu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/he/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/hi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/hr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/hu/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/hy/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/id/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/is/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/it/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ja/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ka/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/km/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/kn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ko/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ku/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/locale.alias +75 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/lt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/lv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mai/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ml/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/mr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ms/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/nb/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nds/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ne/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/nl/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/nn/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/oc/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/or/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pl/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ps/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/pt_BR/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ro/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ru/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/rw/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/si/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sq/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@ije/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sr@latin/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/sv/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ta/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/te/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/tg/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/th/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tl/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/tr/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/tt/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/ug/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/uk/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/vi/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/wa/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/xh/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/yi/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_CN/LC_MESSAGES/gnutls.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_HK/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/gettext-runtime.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib-networking.mo +0 -0
- data/vendor/local/share/locale/zh_TW/LC_MESSAGES/glib20.mo +0 -0
- data/vendor/local/share/man/man1/certtool.1 +741 -0
- data/vendor/local/share/man/man1/envsubst.1 +54 -0
- data/vendor/local/share/man/man1/gettext.1 +69 -0
- data/vendor/local/share/man/man1/gnutls-cli-debug.1 +165 -0
- data/vendor/local/share/man/man1/gnutls-cli.1 +420 -0
- data/vendor/local/share/man/man1/gnutls-serv.1 +453 -0
- data/vendor/local/share/man/man1/iconv.1 +108 -0
- data/vendor/local/share/man/man1/ngettext.1 +68 -0
- data/vendor/local/share/man/man1/ocsptool.1 +335 -0
- data/vendor/local/share/man/man1/p11tool.1 +320 -0
- data/vendor/local/share/man/man1/psktool.1 +129 -0
- data/vendor/local/share/man/man1/srptool.1 +164 -0
- data/vendor/local/share/man/man1/tpmtool.1 +223 -0
- data/vendor/local/share/man/man3/bind_textdomain_codeset.3 +72 -0
- data/vendor/local/share/man/man3/bindtextdomain.3 +69 -0
- data/vendor/local/share/man/man3/dcgettext.3 +1 -0
- data/vendor/local/share/man/man3/dcngettext.3 +1 -0
- data/vendor/local/share/man/man3/dgettext.3 +1 -0
- data/vendor/local/share/man/man3/dngettext.3 +1 -0
- data/vendor/local/share/man/man3/ffi.3 +41 -0
- data/vendor/local/share/man/man3/ffi_call.3 +103 -0
- data/vendor/local/share/man/man3/ffi_prep_cif.3 +68 -0
- data/vendor/local/share/man/man3/ffi_prep_cif_var.3 +73 -0
- data/vendor/local/share/man/man3/gettext.3 +99 -0
- data/vendor/local/share/man/man3/gnutls_alert_get.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_alert_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_alert_get_strname.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_alert_send.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_alert_send_appropriate.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_alpn_get_selected_protocol.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_alpn_set_protocols.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_anon_allocate_client_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_anon_allocate_server_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_anon_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_anon_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_server_dh_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_anon_set_server_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_auth_client_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_auth_get_type.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_auth_server_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_bye.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_certificate_activation_time_peers.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_certificate_allocate_credentials.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_client_get_request_status.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_client_set_retrieve_function.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_certificate_expiration_time_peers.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_ca_names.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_cas.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_credentials.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_crls.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_certificate_free_keys.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_crt_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_issuer.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_ours.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_peers.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_certificate_get_peers_subkey_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_certificate_send_x509_rdn_sequence.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_server_set_request.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_server_set_retrieve_function.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_dh_params.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_key.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_file.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_ocsp_status_request_function.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_file2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_key_mem2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_openpgp_keyring_mem.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function.3 +65 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_retrieve_function2.3 +68 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_rsa_export_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_trust_list.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_flags.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_function.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_verify_limits.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_crl_mem.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_file2.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_key_mem2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_file.3 +63 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_simple_pkcs12_mem.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_system_trust.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_file.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_certificate_set_x509_trust_mem.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_certificate_type_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verification_status_print.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verify_peers2.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_certificate_verify_peers3.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_check_version.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_add_auth.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_cipher_decrypt.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_cipher_decrypt2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_cipher_deinit.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_encrypt.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_cipher_encrypt2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_block_size.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_iv_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_key_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_cipher_get_tag_size.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_cipher_init.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_cipher_list.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_set_iv.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_cipher_set_priority.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_suite_get_name.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_cipher_suite_info.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_cipher_tag.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_compression_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_compression_set_priority.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_credentials_clear.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_credentials_set.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_db_check_entry.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_db_check_entry_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_get_default_cache_expiration.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_db_get_ptr.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_remove_session.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_db_set_cache_expiration.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_set_ptr.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_db_set_remove_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_db_set_retrieve_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_db_set_store_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_group.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_peers_public_bits.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_prime_bits.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dh_get_secret_bits.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_cpy.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export2_pkcs3.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export_pkcs3.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_export_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_generate2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_import_pkcs3.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_import_raw.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_dh_params_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_dh_set_prime_bits.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_digest_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_digest_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_digest_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_dtls_cookie_send.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_dtls_cookie_verify.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_data_mtu.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_mtu.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_dtls_get_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dtls_prestate_set.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_data_mtu.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_mtu.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_dtls_set_timeouts.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_get_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ecc_curve_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_error_is_fatal.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_error_to_alert.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_est_record_overhead_size.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_fingerprint.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_global_deinit.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_global_init.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_global_set_audit_log_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_global_set_log_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_global_set_log_level.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_global_set_mem_functions.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_global_set_mutex.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_global_set_time_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_handshake.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_handshake_description_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_handshake_get_last_in.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_handshake_get_last_out.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_hook_function.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_max_packet_length.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_post_client_hello_function.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_private_extensions.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_random.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_handshake_set_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_hash.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hash_deinit.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hash_fast.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_hash_get_len.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hash_init.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hash_output.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_allowed.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_enable.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_get_timeout.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_ping.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_pong.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_heartbeat_set_timeouts.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_hex2bin.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_hex_decode.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_hex_encode.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_hmac.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_hmac_deinit.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_fast.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_hmac_get_len.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_init.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_hmac_output.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_hmac_set_nonce.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_init.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_key_generate.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_kx_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_kx_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_kx_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_kx_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_kx_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_load_file.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_mac_get.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_id.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_key_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_mac_get_nonce_size.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_mac_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_mac_set_priority.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_add_cert_id.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_export.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_cert_id.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_extension.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_nonce.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_get_version.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_import.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_print.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_randomize_nonce.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_set_extension.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_req_set_nonce.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_check_crt.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_export.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_certs.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_extension.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_nonce.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_produced.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_responder.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_response.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_signature_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_single.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_status.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_get_version.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_import.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_print.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_resp_verify_direct.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_enable_client.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_get.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_ocsp_status_request_is_checked.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_check_hostname.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_export.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_export2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_auth_subkey.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_creation_time.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_expiration_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_fingerprint.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_key_usage.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_name.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_dsa_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_pk_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_preferred_key_id.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_revoked_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_count.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_creation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_fingerprint.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_idx.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_dsa_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_pk_rsa_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_revoked_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_subkey_usage.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_import.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_print.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_set_preferred_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_ring.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_crt_verify_self.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_check_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_get_crt_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_import.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_keyring_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_dsa_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_rsa_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_dsa_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_export_subkey_rsa_raw.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_fingerprint.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_key_id.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_pk_algorithm.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_preferred_key_id.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_revoked_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_count.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_creation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_fingerprint.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_idx.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_pk_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_get_subkey_revoked_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sec_param.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_set_preferred_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_privkey_sign_hash.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_send_cert.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_openpgp_set_recv_key_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pcert_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_openpgp_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_x509.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pcert_import_x509_raw.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pcert_list_import_x509_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_decode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_decode_alloc.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_encode.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pem_base64_encode_alloc.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_perror.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_pk_algorithm_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pk_bits_to_sec_param.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pk_get_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pk_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pk_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pk_to_sign.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_add_provider.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_secret_key.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_crt.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_copy_x509_privkey.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_delete_url.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_get_pin_function.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_get_raw_issuer.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_init.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export2.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export3.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_export_url.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_info.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_get_type.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_import_url.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_list_import_url2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_obj_set_pin_function.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_export_url.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_generate2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_info.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_get_pk_algorithm.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_import_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_set_pin_function.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_privkey_status.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_reinit.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_set_pin_function.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_set_token_function.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_flags.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_info.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_mechanism.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_random.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_get_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_init.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_token_set_pin.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs11_type_get_name.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_decrypt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_encrypt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_data.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_friendly_name.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_key_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_get_type.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_crt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_data.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_friendly_name.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_bag_set_key_id.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_generate_mac.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_get_bag.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_set_bag.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_simple_parse.3 +84 -0
- data/vendor/local/share/man/man3/gnutls_pkcs12_verify_mac.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_delete_crt.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_count.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crl_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_count.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_get_crt_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_import.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crl_raw.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pkcs7_set_crt_raw.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_prf.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_prf_raw.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_priority_certificate_type_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_cipher_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_compression_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_priority_ecc_curve_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_get_cipher_suite_index.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_priority_init.3 +102 -0
- data/vendor/local/share/man/man3/gnutls_priority_kx_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_mac_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_protocol_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_priority_set.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_priority_set_direct.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_priority_sign_list.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_privkey_decrypt_data.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_privkey_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_privkey_get_pk_algorithm.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_privkey_get_type.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_ext.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_ext2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_openpgp_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_pkcs11_url.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_tpm_url.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_x509.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_privkey_import_x509_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_privkey_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_privkey_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_data.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_hash.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_privkey_sign_raw_data.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_privkey_status.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_protocol_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_protocol_list.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_protocol_set_priority.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_psk_allocate_client_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_allocate_server_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_client_get_hint.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_psk_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_psk_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_psk_server_get_username.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_client_credentials_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_file.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_credentials_hint.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_dh_params.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_psk_set_server_params_function.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_encrypt_data.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_export.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_export2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_key_id.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_key_usage.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_openpgp_key_id.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_algorithm.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_dsa_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_ecc_x962.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_pk_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_preferred_hash_algorithm.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_get_verify_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_ecc_x962.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_openpgp_raw.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_pkcs11_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_privkey.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_tpm_url.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_url.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_crq.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_import_x509_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_init.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_print.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_set_key_usage.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_data.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_data2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_pubkey_verify_hash2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_random_art.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_range_split.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_record_can_use_length_hiding.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_record_check_corked.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_check_pending.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_cork.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_record_disable_padding.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_record_get_direction.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_record_get_discarded.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_record_get_max_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_record_overhead_size.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_record_recv.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_record_recv_seq.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_record_send.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_record_send_range.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_record_set_max_empty_records.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_record_set_max_size.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_record_set_timeout.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_record_uncork.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_rehandshake.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_rnd.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_rnd_refresh.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_rsa_export_get_modulus_bits.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_rsa_export_get_pubkey.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_cpy.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_export_pkcs1.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_export_raw.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_generate2.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_import_pkcs1.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_import_raw.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_rsa_params_init.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_safe_renegotiation_status.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_sec_param_get_name.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sec_param_to_pk_bits.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_server_name_get.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_server_name_set.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_session_channel_binding.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_session_enable_compatibility_mode.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_force_valid.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_get_data.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_session_get_data2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_get_desc.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_session_get_id.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_session_get_id2.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_session_get_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_get_random.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_session_is_resumed.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_session_resumption_requested.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_session_set_data.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_session_set_id.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_set_premaster.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_session_set_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_enable_client.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_enable_server.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_session_ticket_key_generate.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_set_default_export_priority.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_set_default_priority.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_client.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_algorithm_get_requested.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_sign_callback_get.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_sign_callback_set.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_hash_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_id.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_name.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_sign_get_pk_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_sign_is_secure.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_sign_list.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_srp_allocate_client_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_allocate_server_credentials.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_decode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_decode_alloc.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_encode.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_srp_base64_encode_alloc.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_srp_free_client_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_srp_free_server_credentials.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_srp_server_get_username.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_client_credentials_function.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_prime_bits.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_file.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_srp_set_server_credentials_function.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_srp_verifier.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_keys.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_mki.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_profile_id.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_profile_name.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_srtp_get_selected_profile.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_mki.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_profile.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_srtp_set_profile_direct.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_store_commitment.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_store_pubkey.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_strerror.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_strerror_name.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_supplemental_get_name.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_tdb_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_tdb_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_store_commitment_func.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_store_func.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_tdb_set_verify_func.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_tpm_get_registered.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_tpm_key_list_deinit.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_tpm_key_list_get_url.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_tpm_privkey_delete.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_tpm_privkey_generate.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_int.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_int2.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_transport_get_ptr2.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_errno.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_errno_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_int.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_int2.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_ptr.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_ptr2.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_pull_function.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_pull_timeout_function.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_push_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_transport_set_vec_push_function.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_url_is_supported.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_verify_stored_pubkey.3 +67 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_check_issuer.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_export.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_gn_serial.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_authority_key_id.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_count.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_crt_serial.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_dn_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_info.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_extension_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_issuer_dn_by_oid.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_next_update.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_number.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_raw_issuer_dn.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_signature_algorithm.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_this_update.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_import.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_init.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_list_import.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_list_import2.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_print.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_privkey_sign.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_authority_key_id.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_crt_serial.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_next_update.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_number.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_this_update.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_set_version.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_sign.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_sign2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crl_verify.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_deinit.3 +34 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_export.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_export2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_by_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_attribute_info.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_basic_constraints.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_challenge_password.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_by_oid.3 +57 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_dn_oid.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_by_oid.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_data.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_extension_info.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_id.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_purpose_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_rsa_raw.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_key_usage.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_pk_algorithm.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_private_key_usage_period.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_name.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_subject_alt_othername_oid.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_get_version.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_init.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_print.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_privkey_sign.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_attribute_by_oid.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_basic_constraints.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_challenge_password.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_dn_by_oid.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_purpose_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_rsa_raw.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_key_usage.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_private_key_usage_period.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_subject_alt_name.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_set_version.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_sign.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_sign2.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crq_verify.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_hostname.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_issuer.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_check_revocation.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_cpy_crl_dist_points.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_export2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_activation_time.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_info_access.3 +100 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_gn_serial.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_authority_key_id.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_basic_constraints.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_ca_status.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_crl_dist_points.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_by_oid.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_dn_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_expiration_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_by_oid.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_data.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_info.3 +55 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_extension_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_fingerprint.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name.3 +64 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_name2.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_alt_othername_oid.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn2.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_by_oid.3 +60 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_dn_oid.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_issuer_unique_id.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_id.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_purpose_oid.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_key_usage.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_algorithm.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_dsa_raw.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_pk_rsa_raw.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_policy.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_preferred_hash_algorithm.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_private_key_usage_period.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_proxy.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_dn.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_raw_issuer_dn.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_serial.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_signature_algorithm.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_name2.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_alt_othername_oid.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_key_id.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_subject_unique_id.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_verify_algorithm.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_get_version.3 +35 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_import_pkcs11_url.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import2.3 +53 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_import_pkcs11.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_list_verify.3 +62 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_print.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_privkey_sign.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_activation_time.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_info_access.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_authority_key_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_basic_constraints.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_ca_status.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crl_dist_points2.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_crq_extensions.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_dn_by_oid.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_expiration_time.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_extension_by_oid.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_issuer_dn_by_oid.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_purpose_oid.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_key_usage.3 +38 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_pin_function.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_policy.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_private_key_usage_period.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_proxy_dn.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_pubkey.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_serial.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alt_name.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_alternative_name.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_subject_key_id.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_set_version.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_sign.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_sign2.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify_data.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_crt_verify_hash.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_deinit.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_export.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_export2.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_get_rdn_ava.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_import.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_init.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_oid_known.3 +41 -0
- data/vendor/local/share/man/man3/gnutls_x509_dn_oid_name.3 +42 -0
- data/vendor/local/share/man/man3/gnutls_x509_policy_release.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_cpy.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_deinit.3 +33 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export2.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export2_pkcs8.3 +58 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_ecc_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_pkcs8.3 +61 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_export_rsa_raw2.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_fix.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_generate.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_key_id.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_get_pk_algorithm2.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import2.3 +52 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_dsa_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_ecc_raw.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_openssl.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_pkcs8.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_import_rsa_raw2.3 +54 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_init.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sec_param.3 +39 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_data.3 +59 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_sign_hash.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_privkey_verify_params.3 +36 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get_by_oid.3 +51 -0
- data/vendor/local/share/man/man3/gnutls_x509_rdn_get_oid.3 +47 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_cas.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_crls.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_named_crt.3 +56 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_system_trust.3 +43 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_file.3 +49 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_add_trust_mem.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_deinit.3 +37 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_get_issuer.3 +45 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_init.3 +40 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_cas.3 +48 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_file.3 +46 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_remove_trust_mem.3 +44 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_crt.3 +50 -0
- data/vendor/local/share/man/man3/gnutls_x509_trust_list_verify_named_crt.3 +53 -0
- data/vendor/local/share/man/man3/iconv.3 +92 -0
- data/vendor/local/share/man/man3/iconv_close.3 +31 -0
- data/vendor/local/share/man/man3/iconv_open.3 +205 -0
- data/vendor/local/share/man/man3/iconv_open_into.3 +47 -0
- data/vendor/local/share/man/man3/iconvctl.3 +67 -0
- data/vendor/local/share/man/man3/ngettext.3 +60 -0
- data/vendor/local/share/man/man3/textdomain.3 +57 -0
- data/vendor/local/share/man/man3/xssl_client_init.3 +56 -0
- data/vendor/local/share/man/man3/xssl_cred_deinit.3 +37 -0
- data/vendor/local/share/man/man3/xssl_cred_init.3 +48 -0
- data/vendor/local/share/man/man3/xssl_deinit.3 +36 -0
- data/vendor/local/share/man/man3/xssl_flush.3 +39 -0
- data/vendor/local/share/man/man3/xssl_get_session.3 +35 -0
- data/vendor/local/share/man/man3/xssl_getdelim.3 +49 -0
- data/vendor/local/share/man/man3/xssl_printf.3 +45 -0
- data/vendor/local/share/man/man3/xssl_read.3 +43 -0
- data/vendor/local/share/man/man3/xssl_server_init.3 +50 -0
- data/vendor/local/share/man/man3/xssl_sinit.3 +44 -0
- data/vendor/local/share/man/man3/xssl_write.3 +47 -0
- metadata +2311 -0
@@ -0,0 +1,1816 @@
|
|
1
|
+
/* GIO - GLib Input, Output and Streaming Library
|
2
|
+
*
|
3
|
+
* Copyright (C) 2006-2007 Red Hat, Inc.
|
4
|
+
*
|
5
|
+
* This library is free software; you can redistribute it and/or
|
6
|
+
* modify it under the terms of the GNU Lesser General Public
|
7
|
+
* License as published by the Free Software Foundation; either
|
8
|
+
* version 2 of the License, or (at your option) any later version.
|
9
|
+
*
|
10
|
+
* This library is distributed in the hope that it will be useful,
|
11
|
+
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
12
|
+
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
13
|
+
* Lesser General Public License for more details.
|
14
|
+
*
|
15
|
+
* You should have received a copy of the GNU Lesser General
|
16
|
+
* Public License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
17
|
+
*
|
18
|
+
* Author: Alexander Larsson <alexl@redhat.com>
|
19
|
+
*/
|
20
|
+
|
21
|
+
#ifndef __GIO_ENUMS_H__
|
22
|
+
#define __GIO_ENUMS_H__
|
23
|
+
|
24
|
+
#if !defined (__GIO_GIO_H_INSIDE__) && !defined (GIO_COMPILATION)
|
25
|
+
#error "Only <gio/gio.h> can be included directly."
|
26
|
+
#endif
|
27
|
+
|
28
|
+
#include <glib-object.h>
|
29
|
+
|
30
|
+
G_BEGIN_DECLS
|
31
|
+
|
32
|
+
|
33
|
+
/**
|
34
|
+
* GAppInfoCreateFlags:
|
35
|
+
* @G_APP_INFO_CREATE_NONE: No flags.
|
36
|
+
* @G_APP_INFO_CREATE_NEEDS_TERMINAL: Application opens in a terminal window.
|
37
|
+
* @G_APP_INFO_CREATE_SUPPORTS_URIS: Application supports URI arguments.
|
38
|
+
* @G_APP_INFO_CREATE_SUPPORTS_STARTUP_NOTIFICATION: Application supports startup notification. Since 2.26
|
39
|
+
*
|
40
|
+
* Flags used when creating a #GAppInfo.
|
41
|
+
*/
|
42
|
+
typedef enum {
|
43
|
+
G_APP_INFO_CREATE_NONE = 0, /*< nick=none >*/
|
44
|
+
G_APP_INFO_CREATE_NEEDS_TERMINAL = (1 << 0), /*< nick=needs-terminal >*/
|
45
|
+
G_APP_INFO_CREATE_SUPPORTS_URIS = (1 << 1), /*< nick=supports-uris >*/
|
46
|
+
G_APP_INFO_CREATE_SUPPORTS_STARTUP_NOTIFICATION = (1 << 2) /*< nick=supports-startup-notification >*/
|
47
|
+
} GAppInfoCreateFlags;
|
48
|
+
|
49
|
+
/**
|
50
|
+
* GConverterFlags:
|
51
|
+
* @G_CONVERTER_NO_FLAGS: No flags.
|
52
|
+
* @G_CONVERTER_INPUT_AT_END: At end of input data
|
53
|
+
* @G_CONVERTER_FLUSH: Flush data
|
54
|
+
*
|
55
|
+
* Flags used when calling a g_converter_convert().
|
56
|
+
*
|
57
|
+
* Since: 2.24
|
58
|
+
*/
|
59
|
+
typedef enum {
|
60
|
+
G_CONVERTER_NO_FLAGS = 0, /*< nick=none >*/
|
61
|
+
G_CONVERTER_INPUT_AT_END = (1 << 0), /*< nick=input-at-end >*/
|
62
|
+
G_CONVERTER_FLUSH = (1 << 1) /*< nick=flush >*/
|
63
|
+
} GConverterFlags;
|
64
|
+
|
65
|
+
/**
|
66
|
+
* GConverterResult:
|
67
|
+
* @G_CONVERTER_ERROR: There was an error during conversion.
|
68
|
+
* @G_CONVERTER_CONVERTED: Some data was consumed or produced
|
69
|
+
* @G_CONVERTER_FINISHED: The conversion is finished
|
70
|
+
* @G_CONVERTER_FLUSHED: Flushing is finished
|
71
|
+
*
|
72
|
+
* Results returned from g_converter_convert().
|
73
|
+
*
|
74
|
+
* Since: 2.24
|
75
|
+
*/
|
76
|
+
typedef enum {
|
77
|
+
G_CONVERTER_ERROR = 0, /*< nick=error >*/
|
78
|
+
G_CONVERTER_CONVERTED = 1, /*< nick=converted >*/
|
79
|
+
G_CONVERTER_FINISHED = 2, /*< nick=finished >*/
|
80
|
+
G_CONVERTER_FLUSHED = 3 /*< nick=flushed >*/
|
81
|
+
} GConverterResult;
|
82
|
+
|
83
|
+
|
84
|
+
/**
|
85
|
+
* GDataStreamByteOrder:
|
86
|
+
* @G_DATA_STREAM_BYTE_ORDER_BIG_ENDIAN: Selects Big Endian byte order.
|
87
|
+
* @G_DATA_STREAM_BYTE_ORDER_LITTLE_ENDIAN: Selects Little Endian byte order.
|
88
|
+
* @G_DATA_STREAM_BYTE_ORDER_HOST_ENDIAN: Selects endianness based on host machine's architecture.
|
89
|
+
*
|
90
|
+
* #GDataStreamByteOrder is used to ensure proper endianness of streaming data sources
|
91
|
+
* across various machine architectures.
|
92
|
+
*
|
93
|
+
**/
|
94
|
+
typedef enum {
|
95
|
+
G_DATA_STREAM_BYTE_ORDER_BIG_ENDIAN,
|
96
|
+
G_DATA_STREAM_BYTE_ORDER_LITTLE_ENDIAN,
|
97
|
+
G_DATA_STREAM_BYTE_ORDER_HOST_ENDIAN
|
98
|
+
} GDataStreamByteOrder;
|
99
|
+
|
100
|
+
|
101
|
+
/**
|
102
|
+
* GDataStreamNewlineType:
|
103
|
+
* @G_DATA_STREAM_NEWLINE_TYPE_LF: Selects "LF" line endings, common on most modern UNIX platforms.
|
104
|
+
* @G_DATA_STREAM_NEWLINE_TYPE_CR: Selects "CR" line endings.
|
105
|
+
* @G_DATA_STREAM_NEWLINE_TYPE_CR_LF: Selects "CR, LF" line ending, common on Microsoft Windows.
|
106
|
+
* @G_DATA_STREAM_NEWLINE_TYPE_ANY: Automatically try to handle any line ending type.
|
107
|
+
*
|
108
|
+
* #GDataStreamNewlineType is used when checking for or setting the line endings for a given file.
|
109
|
+
**/
|
110
|
+
typedef enum {
|
111
|
+
G_DATA_STREAM_NEWLINE_TYPE_LF,
|
112
|
+
G_DATA_STREAM_NEWLINE_TYPE_CR,
|
113
|
+
G_DATA_STREAM_NEWLINE_TYPE_CR_LF,
|
114
|
+
G_DATA_STREAM_NEWLINE_TYPE_ANY
|
115
|
+
} GDataStreamNewlineType;
|
116
|
+
|
117
|
+
|
118
|
+
/**
|
119
|
+
* GFileAttributeType:
|
120
|
+
* @G_FILE_ATTRIBUTE_TYPE_INVALID: indicates an invalid or uninitalized type.
|
121
|
+
* @G_FILE_ATTRIBUTE_TYPE_STRING: a null terminated UTF8 string.
|
122
|
+
* @G_FILE_ATTRIBUTE_TYPE_BYTE_STRING: a zero terminated string of non-zero bytes.
|
123
|
+
* @G_FILE_ATTRIBUTE_TYPE_BOOLEAN: a boolean value.
|
124
|
+
* @G_FILE_ATTRIBUTE_TYPE_UINT32: an unsigned 4-byte/32-bit integer.
|
125
|
+
* @G_FILE_ATTRIBUTE_TYPE_INT32: a signed 4-byte/32-bit integer.
|
126
|
+
* @G_FILE_ATTRIBUTE_TYPE_UINT64: an unsigned 8-byte/64-bit integer.
|
127
|
+
* @G_FILE_ATTRIBUTE_TYPE_INT64: a signed 8-byte/64-bit integer.
|
128
|
+
* @G_FILE_ATTRIBUTE_TYPE_OBJECT: a #GObject.
|
129
|
+
* @G_FILE_ATTRIBUTE_TYPE_STRINGV: a %NULL terminated char **. Since 2.22
|
130
|
+
*
|
131
|
+
* The data types for file attributes.
|
132
|
+
**/
|
133
|
+
typedef enum {
|
134
|
+
G_FILE_ATTRIBUTE_TYPE_INVALID = 0,
|
135
|
+
G_FILE_ATTRIBUTE_TYPE_STRING,
|
136
|
+
G_FILE_ATTRIBUTE_TYPE_BYTE_STRING, /* zero terminated string of non-zero bytes */
|
137
|
+
G_FILE_ATTRIBUTE_TYPE_BOOLEAN,
|
138
|
+
G_FILE_ATTRIBUTE_TYPE_UINT32,
|
139
|
+
G_FILE_ATTRIBUTE_TYPE_INT32,
|
140
|
+
G_FILE_ATTRIBUTE_TYPE_UINT64,
|
141
|
+
G_FILE_ATTRIBUTE_TYPE_INT64,
|
142
|
+
G_FILE_ATTRIBUTE_TYPE_OBJECT,
|
143
|
+
G_FILE_ATTRIBUTE_TYPE_STRINGV
|
144
|
+
} GFileAttributeType;
|
145
|
+
|
146
|
+
|
147
|
+
/**
|
148
|
+
* GFileAttributeInfoFlags:
|
149
|
+
* @G_FILE_ATTRIBUTE_INFO_NONE: no flags set.
|
150
|
+
* @G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE: copy the attribute values when the file is copied.
|
151
|
+
* @G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED: copy the attribute values when the file is moved.
|
152
|
+
*
|
153
|
+
* Flags specifying the behaviour of an attribute.
|
154
|
+
**/
|
155
|
+
typedef enum {
|
156
|
+
G_FILE_ATTRIBUTE_INFO_NONE = 0,
|
157
|
+
G_FILE_ATTRIBUTE_INFO_COPY_WITH_FILE = (1 << 0),
|
158
|
+
G_FILE_ATTRIBUTE_INFO_COPY_WHEN_MOVED = (1 << 1)
|
159
|
+
} GFileAttributeInfoFlags;
|
160
|
+
|
161
|
+
|
162
|
+
/**
|
163
|
+
* GFileAttributeStatus:
|
164
|
+
* @G_FILE_ATTRIBUTE_STATUS_UNSET: Attribute value is unset (empty).
|
165
|
+
* @G_FILE_ATTRIBUTE_STATUS_SET: Attribute value is set.
|
166
|
+
* @G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING: Indicates an error in setting the value.
|
167
|
+
*
|
168
|
+
* Used by g_file_set_attributes_from_info() when setting file attributes.
|
169
|
+
**/
|
170
|
+
typedef enum {
|
171
|
+
G_FILE_ATTRIBUTE_STATUS_UNSET = 0,
|
172
|
+
G_FILE_ATTRIBUTE_STATUS_SET,
|
173
|
+
G_FILE_ATTRIBUTE_STATUS_ERROR_SETTING
|
174
|
+
} GFileAttributeStatus;
|
175
|
+
|
176
|
+
|
177
|
+
/**
|
178
|
+
* GFileQueryInfoFlags:
|
179
|
+
* @G_FILE_QUERY_INFO_NONE: No flags set.
|
180
|
+
* @G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS: Don't follow symlinks.
|
181
|
+
*
|
182
|
+
* Flags used when querying a #GFileInfo.
|
183
|
+
*/
|
184
|
+
typedef enum {
|
185
|
+
G_FILE_QUERY_INFO_NONE = 0,
|
186
|
+
G_FILE_QUERY_INFO_NOFOLLOW_SYMLINKS = (1 << 0) /*< nick=nofollow-symlinks >*/
|
187
|
+
} GFileQueryInfoFlags;
|
188
|
+
|
189
|
+
|
190
|
+
/**
|
191
|
+
* GFileCreateFlags:
|
192
|
+
* @G_FILE_CREATE_NONE: No flags set.
|
193
|
+
* @G_FILE_CREATE_PRIVATE: Create a file that can only be
|
194
|
+
* accessed by the current user.
|
195
|
+
* @G_FILE_CREATE_REPLACE_DESTINATION: Replace the destination
|
196
|
+
* as if it didn't exist before. Don't try to keep any old
|
197
|
+
* permissions, replace instead of following links. This
|
198
|
+
* is generally useful if you're doing a "copy over"
|
199
|
+
* rather than a "save new version of" replace operation.
|
200
|
+
* You can think of it as "unlink destination" before
|
201
|
+
* writing to it, although the implementation may not
|
202
|
+
* be exactly like that. Since 2.20
|
203
|
+
*
|
204
|
+
* Flags used when an operation may create a file.
|
205
|
+
*/
|
206
|
+
typedef enum {
|
207
|
+
G_FILE_CREATE_NONE = 0,
|
208
|
+
G_FILE_CREATE_PRIVATE = (1 << 0),
|
209
|
+
G_FILE_CREATE_REPLACE_DESTINATION = (1 << 1)
|
210
|
+
} GFileCreateFlags;
|
211
|
+
|
212
|
+
/**
|
213
|
+
* GFileMeasureFlags:
|
214
|
+
* @G_FILE_MEASURE_NONE: No flags set.
|
215
|
+
* @G_FILE_MEASURE_REPORT_ANY_ERROR: Report any error encountered
|
216
|
+
* while traversing the directory tree. Normally errors are only
|
217
|
+
* reported for the toplevel file.
|
218
|
+
* @G_FILE_MEASURE_APPARENT_SIZE: Tally usage based on apparent file
|
219
|
+
* sizes. Normally, the block-size is used, if available, as this is a
|
220
|
+
* more accurate representation of disk space used.
|
221
|
+
* Compare with `du --apparent-size`.
|
222
|
+
* @G_FILE_MEASURE_NO_XDEV: Do not cross mount point boundaries.
|
223
|
+
* Compare with `du -x`.
|
224
|
+
*
|
225
|
+
* Flags that can be used with g_file_measure_disk_usage().
|
226
|
+
*
|
227
|
+
* Since: 2.38
|
228
|
+
**/
|
229
|
+
typedef enum {
|
230
|
+
G_FILE_MEASURE_NONE = 0,
|
231
|
+
G_FILE_MEASURE_REPORT_ANY_ERROR = (1 << 1),
|
232
|
+
G_FILE_MEASURE_APPARENT_SIZE = (1 << 2),
|
233
|
+
G_FILE_MEASURE_NO_XDEV = (1 << 3)
|
234
|
+
} GFileMeasureFlags;
|
235
|
+
|
236
|
+
/**
|
237
|
+
* GMountMountFlags:
|
238
|
+
* @G_MOUNT_MOUNT_NONE: No flags set.
|
239
|
+
*
|
240
|
+
* Flags used when mounting a mount.
|
241
|
+
*/
|
242
|
+
typedef enum /*< flags >*/ {
|
243
|
+
G_MOUNT_MOUNT_NONE = 0
|
244
|
+
} GMountMountFlags;
|
245
|
+
|
246
|
+
|
247
|
+
/**
|
248
|
+
* GMountUnmountFlags:
|
249
|
+
* @G_MOUNT_UNMOUNT_NONE: No flags set.
|
250
|
+
* @G_MOUNT_UNMOUNT_FORCE: Unmount even if there are outstanding
|
251
|
+
* file operations on the mount.
|
252
|
+
*
|
253
|
+
* Flags used when an unmounting a mount.
|
254
|
+
*/
|
255
|
+
typedef enum {
|
256
|
+
G_MOUNT_UNMOUNT_NONE = 0,
|
257
|
+
G_MOUNT_UNMOUNT_FORCE = (1 << 0)
|
258
|
+
} GMountUnmountFlags;
|
259
|
+
|
260
|
+
/**
|
261
|
+
* GDriveStartFlags:
|
262
|
+
* @G_DRIVE_START_NONE: No flags set.
|
263
|
+
*
|
264
|
+
* Flags used when starting a drive.
|
265
|
+
*
|
266
|
+
* Since: 2.22
|
267
|
+
*/
|
268
|
+
typedef enum /*< flags >*/ {
|
269
|
+
G_DRIVE_START_NONE = 0
|
270
|
+
} GDriveStartFlags;
|
271
|
+
|
272
|
+
/**
|
273
|
+
* GDriveStartStopType:
|
274
|
+
* @G_DRIVE_START_STOP_TYPE_UNKNOWN: Unknown or drive doesn't support
|
275
|
+
* start/stop.
|
276
|
+
* @G_DRIVE_START_STOP_TYPE_SHUTDOWN: The stop method will physically
|
277
|
+
* shut down the drive and e.g. power down the port the drive is
|
278
|
+
* attached to.
|
279
|
+
* @G_DRIVE_START_STOP_TYPE_NETWORK: The start/stop methods are used
|
280
|
+
* for connecting/disconnect to the drive over the network.
|
281
|
+
* @G_DRIVE_START_STOP_TYPE_MULTIDISK: The start/stop methods will
|
282
|
+
* assemble/disassemble a virtual drive from several physical
|
283
|
+
* drives.
|
284
|
+
* @G_DRIVE_START_STOP_TYPE_PASSWORD: The start/stop methods will
|
285
|
+
* unlock/lock the disk (for example using the ATA <quote>SECURITY
|
286
|
+
* UNLOCK DEVICE</quote> command)
|
287
|
+
*
|
288
|
+
* Enumeration describing how a drive can be started/stopped.
|
289
|
+
*
|
290
|
+
* Since: 2.22
|
291
|
+
*/
|
292
|
+
typedef enum {
|
293
|
+
G_DRIVE_START_STOP_TYPE_UNKNOWN,
|
294
|
+
G_DRIVE_START_STOP_TYPE_SHUTDOWN,
|
295
|
+
G_DRIVE_START_STOP_TYPE_NETWORK,
|
296
|
+
G_DRIVE_START_STOP_TYPE_MULTIDISK,
|
297
|
+
G_DRIVE_START_STOP_TYPE_PASSWORD
|
298
|
+
} GDriveStartStopType;
|
299
|
+
|
300
|
+
/**
|
301
|
+
* GFileCopyFlags:
|
302
|
+
* @G_FILE_COPY_NONE: No flags set.
|
303
|
+
* @G_FILE_COPY_OVERWRITE: Overwrite any existing files
|
304
|
+
* @G_FILE_COPY_BACKUP: Make a backup of any existing files.
|
305
|
+
* @G_FILE_COPY_NOFOLLOW_SYMLINKS: Don't follow symlinks.
|
306
|
+
* @G_FILE_COPY_ALL_METADATA: Copy all file metadata instead of just default set used for copy (see #GFileInfo).
|
307
|
+
* @G_FILE_COPY_NO_FALLBACK_FOR_MOVE: Don't use copy and delete fallback if native move not supported.
|
308
|
+
* @G_FILE_COPY_TARGET_DEFAULT_PERMS: Leaves target file with default perms, instead of setting the source file perms.
|
309
|
+
*
|
310
|
+
* Flags used when copying or moving files.
|
311
|
+
*/
|
312
|
+
typedef enum {
|
313
|
+
G_FILE_COPY_NONE = 0, /*< nick=none >*/
|
314
|
+
G_FILE_COPY_OVERWRITE = (1 << 0),
|
315
|
+
G_FILE_COPY_BACKUP = (1 << 1),
|
316
|
+
G_FILE_COPY_NOFOLLOW_SYMLINKS = (1 << 2),
|
317
|
+
G_FILE_COPY_ALL_METADATA = (1 << 3),
|
318
|
+
G_FILE_COPY_NO_FALLBACK_FOR_MOVE = (1 << 4),
|
319
|
+
G_FILE_COPY_TARGET_DEFAULT_PERMS = (1 << 5)
|
320
|
+
} GFileCopyFlags;
|
321
|
+
|
322
|
+
|
323
|
+
/**
|
324
|
+
* GFileMonitorFlags:
|
325
|
+
* @G_FILE_MONITOR_NONE: No flags set.
|
326
|
+
* @G_FILE_MONITOR_WATCH_MOUNTS: Watch for mount events.
|
327
|
+
* @G_FILE_MONITOR_SEND_MOVED: Pair DELETED and CREATED events caused
|
328
|
+
* by file renames (moves) and send a single G_FILE_MONITOR_EVENT_MOVED
|
329
|
+
* event instead (NB: not supported on all backends; the default
|
330
|
+
* behaviour -without specifying this flag- is to send single DELETED
|
331
|
+
* and CREATED events).
|
332
|
+
* @G_FILE_MONITOR_WATCH_HARD_LINKS: Watch for changes to the file made
|
333
|
+
* via another hard link. Since 2.36.
|
334
|
+
*
|
335
|
+
* Flags used to set what a #GFileMonitor will watch for.
|
336
|
+
*/
|
337
|
+
typedef enum {
|
338
|
+
G_FILE_MONITOR_NONE = 0,
|
339
|
+
G_FILE_MONITOR_WATCH_MOUNTS = (1 << 0),
|
340
|
+
G_FILE_MONITOR_SEND_MOVED = (1 << 1),
|
341
|
+
G_FILE_MONITOR_WATCH_HARD_LINKS = (1 << 2)
|
342
|
+
} GFileMonitorFlags;
|
343
|
+
|
344
|
+
|
345
|
+
/**
|
346
|
+
* GFileType:
|
347
|
+
* @G_FILE_TYPE_UNKNOWN: File's type is unknown.
|
348
|
+
* @G_FILE_TYPE_REGULAR: File handle represents a regular file.
|
349
|
+
* @G_FILE_TYPE_DIRECTORY: File handle represents a directory.
|
350
|
+
* @G_FILE_TYPE_SYMBOLIC_LINK: File handle represents a symbolic link
|
351
|
+
* (Unix systems).
|
352
|
+
* @G_FILE_TYPE_SPECIAL: File is a "special" file, such as a socket, fifo,
|
353
|
+
* block device, or character device.
|
354
|
+
* @G_FILE_TYPE_SHORTCUT: File is a shortcut (Windows systems).
|
355
|
+
* @G_FILE_TYPE_MOUNTABLE: File is a mountable location.
|
356
|
+
*
|
357
|
+
* Indicates the file's on-disk type.
|
358
|
+
**/
|
359
|
+
typedef enum {
|
360
|
+
G_FILE_TYPE_UNKNOWN = 0,
|
361
|
+
G_FILE_TYPE_REGULAR,
|
362
|
+
G_FILE_TYPE_DIRECTORY,
|
363
|
+
G_FILE_TYPE_SYMBOLIC_LINK,
|
364
|
+
G_FILE_TYPE_SPECIAL, /* socket, fifo, blockdev, chardev */
|
365
|
+
G_FILE_TYPE_SHORTCUT,
|
366
|
+
G_FILE_TYPE_MOUNTABLE
|
367
|
+
} GFileType;
|
368
|
+
|
369
|
+
|
370
|
+
/**
|
371
|
+
* GFilesystemPreviewType:
|
372
|
+
* @G_FILESYSTEM_PREVIEW_TYPE_IF_ALWAYS: Only preview files if user has explicitly requested it.
|
373
|
+
* @G_FILESYSTEM_PREVIEW_TYPE_IF_LOCAL: Preview files if user has requested preview of "local" files.
|
374
|
+
* @G_FILESYSTEM_PREVIEW_TYPE_NEVER: Never preview files.
|
375
|
+
*
|
376
|
+
* Indicates a hint from the file system whether files should be
|
377
|
+
* previewed in a file manager. Returned as the value of the key
|
378
|
+
* #G_FILE_ATTRIBUTE_FILESYSTEM_USE_PREVIEW.
|
379
|
+
**/
|
380
|
+
typedef enum {
|
381
|
+
G_FILESYSTEM_PREVIEW_TYPE_IF_ALWAYS = 0,
|
382
|
+
G_FILESYSTEM_PREVIEW_TYPE_IF_LOCAL,
|
383
|
+
G_FILESYSTEM_PREVIEW_TYPE_NEVER
|
384
|
+
} GFilesystemPreviewType;
|
385
|
+
|
386
|
+
|
387
|
+
/**
|
388
|
+
* GFileMonitorEvent:
|
389
|
+
* @G_FILE_MONITOR_EVENT_CHANGED: a file changed.
|
390
|
+
* @G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT: a hint that this was probably the last change in a set of changes.
|
391
|
+
* @G_FILE_MONITOR_EVENT_DELETED: a file was deleted.
|
392
|
+
* @G_FILE_MONITOR_EVENT_CREATED: a file was created.
|
393
|
+
* @G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED: a file attribute was changed.
|
394
|
+
* @G_FILE_MONITOR_EVENT_PRE_UNMOUNT: the file location will soon be unmounted.
|
395
|
+
* @G_FILE_MONITOR_EVENT_UNMOUNTED: the file location was unmounted.
|
396
|
+
* @G_FILE_MONITOR_EVENT_MOVED: the file was moved.
|
397
|
+
*
|
398
|
+
* Specifies what type of event a monitor event is.
|
399
|
+
**/
|
400
|
+
typedef enum {
|
401
|
+
G_FILE_MONITOR_EVENT_CHANGED,
|
402
|
+
G_FILE_MONITOR_EVENT_CHANGES_DONE_HINT,
|
403
|
+
G_FILE_MONITOR_EVENT_DELETED,
|
404
|
+
G_FILE_MONITOR_EVENT_CREATED,
|
405
|
+
G_FILE_MONITOR_EVENT_ATTRIBUTE_CHANGED,
|
406
|
+
G_FILE_MONITOR_EVENT_PRE_UNMOUNT,
|
407
|
+
G_FILE_MONITOR_EVENT_UNMOUNTED,
|
408
|
+
G_FILE_MONITOR_EVENT_MOVED
|
409
|
+
} GFileMonitorEvent;
|
410
|
+
|
411
|
+
|
412
|
+
/* This enumeration conflicts with GIOError in giochannel.h. However,
|
413
|
+
* that is only used as a return value in some deprecated functions.
|
414
|
+
* So, we reuse the same prefix for the enumeration values, but call
|
415
|
+
* the actual enumeration (which is rarely used) GIOErrorEnum.
|
416
|
+
*/
|
417
|
+
/**
|
418
|
+
* GIOErrorEnum:
|
419
|
+
* @G_IO_ERROR_FAILED: Generic error condition for when an operation fails
|
420
|
+
* and no more specific #GIOErrorEnum value is defined.
|
421
|
+
* @G_IO_ERROR_NOT_FOUND: File not found.
|
422
|
+
* @G_IO_ERROR_EXISTS: File already exists.
|
423
|
+
* @G_IO_ERROR_IS_DIRECTORY: File is a directory.
|
424
|
+
* @G_IO_ERROR_NOT_DIRECTORY: File is not a directory.
|
425
|
+
* @G_IO_ERROR_NOT_EMPTY: File is a directory that isn't empty.
|
426
|
+
* @G_IO_ERROR_NOT_REGULAR_FILE: File is not a regular file.
|
427
|
+
* @G_IO_ERROR_NOT_SYMBOLIC_LINK: File is not a symbolic link.
|
428
|
+
* @G_IO_ERROR_NOT_MOUNTABLE_FILE: File cannot be mounted.
|
429
|
+
* @G_IO_ERROR_FILENAME_TOO_LONG: Filename is too many characters.
|
430
|
+
* @G_IO_ERROR_INVALID_FILENAME: Filename is invalid or contains invalid characters.
|
431
|
+
* @G_IO_ERROR_TOO_MANY_LINKS: File contains too many symbolic links.
|
432
|
+
* @G_IO_ERROR_NO_SPACE: No space left on drive.
|
433
|
+
* @G_IO_ERROR_INVALID_ARGUMENT: Invalid argument.
|
434
|
+
* @G_IO_ERROR_PERMISSION_DENIED: Permission denied.
|
435
|
+
* @G_IO_ERROR_NOT_SUPPORTED: Operation (or one of its parameters) not supported
|
436
|
+
* @G_IO_ERROR_NOT_MOUNTED: File isn't mounted.
|
437
|
+
* @G_IO_ERROR_ALREADY_MOUNTED: File is already mounted.
|
438
|
+
* @G_IO_ERROR_CLOSED: File was closed.
|
439
|
+
* @G_IO_ERROR_CANCELLED: Operation was cancelled. See #GCancellable.
|
440
|
+
* @G_IO_ERROR_PENDING: Operations are still pending.
|
441
|
+
* @G_IO_ERROR_READ_ONLY: File is read only.
|
442
|
+
* @G_IO_ERROR_CANT_CREATE_BACKUP: Backup couldn't be created.
|
443
|
+
* @G_IO_ERROR_WRONG_ETAG: File's Entity Tag was incorrect.
|
444
|
+
* @G_IO_ERROR_TIMED_OUT: Operation timed out.
|
445
|
+
* @G_IO_ERROR_WOULD_RECURSE: Operation would be recursive.
|
446
|
+
* @G_IO_ERROR_BUSY: File is busy.
|
447
|
+
* @G_IO_ERROR_WOULD_BLOCK: Operation would block.
|
448
|
+
* @G_IO_ERROR_HOST_NOT_FOUND: Host couldn't be found (remote operations).
|
449
|
+
* @G_IO_ERROR_WOULD_MERGE: Operation would merge files.
|
450
|
+
* @G_IO_ERROR_FAILED_HANDLED: Operation failed and a helper program has
|
451
|
+
* already interacted with the user. Do not display any error dialog.
|
452
|
+
* @G_IO_ERROR_TOO_MANY_OPEN_FILES: The current process has too many files
|
453
|
+
* open and can't open any more. Duplicate descriptors do count toward
|
454
|
+
* this limit. Since 2.20
|
455
|
+
* @G_IO_ERROR_NOT_INITIALIZED: The object has not been initialized. Since 2.22
|
456
|
+
* @G_IO_ERROR_ADDRESS_IN_USE: The requested address is already in use. Since 2.22
|
457
|
+
* @G_IO_ERROR_PARTIAL_INPUT: Need more input to finish operation. Since 2.24
|
458
|
+
* @G_IO_ERROR_INVALID_DATA: The input data was invalid. Since 2.24
|
459
|
+
* @G_IO_ERROR_DBUS_ERROR: A remote object generated an error that
|
460
|
+
* doesn't correspond to a locally registered #GError error
|
461
|
+
* domain. Use g_dbus_error_get_remote_error() to extract the D-Bus
|
462
|
+
* error name and g_dbus_error_strip_remote_error() to fix up the
|
463
|
+
* message so it matches what was received on the wire. Since 2.26.
|
464
|
+
* @G_IO_ERROR_HOST_UNREACHABLE: Host unreachable. Since 2.26
|
465
|
+
* @G_IO_ERROR_NETWORK_UNREACHABLE: Network unreachable. Since 2.26
|
466
|
+
* @G_IO_ERROR_CONNECTION_REFUSED: Connection refused. Since 2.26
|
467
|
+
* @G_IO_ERROR_PROXY_FAILED: Connection to proxy server failed. Since 2.26
|
468
|
+
* @G_IO_ERROR_PROXY_AUTH_FAILED: Proxy authentication failed. Since 2.26
|
469
|
+
* @G_IO_ERROR_PROXY_NEED_AUTH: Proxy server needs authentication. Since 2.26
|
470
|
+
* @G_IO_ERROR_PROXY_NOT_ALLOWED: Proxy connection is not allowed by ruleset.
|
471
|
+
* Since 2.26
|
472
|
+
* @G_IO_ERROR_BROKEN_PIPE: Broken pipe. Since 2.36
|
473
|
+
*
|
474
|
+
* Error codes returned by GIO functions.
|
475
|
+
*
|
476
|
+
* Note that this domain may be extended in future GLib releases. In
|
477
|
+
* general, new error codes either only apply to new APIs, or else
|
478
|
+
* replace #G_IO_ERROR_FAILED in cases that were not explicitly
|
479
|
+
* distinguished before. You should therefore avoid writing code like
|
480
|
+
* |[<!-- language="C" -->
|
481
|
+
* if (g_error_matches (error, G_IO_ERROR, G_IO_ERROR_FAILED))
|
482
|
+
* {
|
483
|
+
* // Assume that this is EPRINTERONFIRE
|
484
|
+
* ...
|
485
|
+
* }
|
486
|
+
* ]|
|
487
|
+
* but should instead treat all unrecognized error codes the same as
|
488
|
+
* #G_IO_ERROR_FAILED.
|
489
|
+
**/
|
490
|
+
typedef enum {
|
491
|
+
G_IO_ERROR_FAILED,
|
492
|
+
G_IO_ERROR_NOT_FOUND,
|
493
|
+
G_IO_ERROR_EXISTS,
|
494
|
+
G_IO_ERROR_IS_DIRECTORY,
|
495
|
+
G_IO_ERROR_NOT_DIRECTORY,
|
496
|
+
G_IO_ERROR_NOT_EMPTY,
|
497
|
+
G_IO_ERROR_NOT_REGULAR_FILE,
|
498
|
+
G_IO_ERROR_NOT_SYMBOLIC_LINK,
|
499
|
+
G_IO_ERROR_NOT_MOUNTABLE_FILE,
|
500
|
+
G_IO_ERROR_FILENAME_TOO_LONG,
|
501
|
+
G_IO_ERROR_INVALID_FILENAME,
|
502
|
+
G_IO_ERROR_TOO_MANY_LINKS,
|
503
|
+
G_IO_ERROR_NO_SPACE,
|
504
|
+
G_IO_ERROR_INVALID_ARGUMENT,
|
505
|
+
G_IO_ERROR_PERMISSION_DENIED,
|
506
|
+
G_IO_ERROR_NOT_SUPPORTED,
|
507
|
+
G_IO_ERROR_NOT_MOUNTED,
|
508
|
+
G_IO_ERROR_ALREADY_MOUNTED,
|
509
|
+
G_IO_ERROR_CLOSED,
|
510
|
+
G_IO_ERROR_CANCELLED,
|
511
|
+
G_IO_ERROR_PENDING,
|
512
|
+
G_IO_ERROR_READ_ONLY,
|
513
|
+
G_IO_ERROR_CANT_CREATE_BACKUP,
|
514
|
+
G_IO_ERROR_WRONG_ETAG,
|
515
|
+
G_IO_ERROR_TIMED_OUT,
|
516
|
+
G_IO_ERROR_WOULD_RECURSE,
|
517
|
+
G_IO_ERROR_BUSY,
|
518
|
+
G_IO_ERROR_WOULD_BLOCK,
|
519
|
+
G_IO_ERROR_HOST_NOT_FOUND,
|
520
|
+
G_IO_ERROR_WOULD_MERGE,
|
521
|
+
G_IO_ERROR_FAILED_HANDLED,
|
522
|
+
G_IO_ERROR_TOO_MANY_OPEN_FILES,
|
523
|
+
G_IO_ERROR_NOT_INITIALIZED,
|
524
|
+
G_IO_ERROR_ADDRESS_IN_USE,
|
525
|
+
G_IO_ERROR_PARTIAL_INPUT,
|
526
|
+
G_IO_ERROR_INVALID_DATA,
|
527
|
+
G_IO_ERROR_DBUS_ERROR,
|
528
|
+
G_IO_ERROR_HOST_UNREACHABLE,
|
529
|
+
G_IO_ERROR_NETWORK_UNREACHABLE,
|
530
|
+
G_IO_ERROR_CONNECTION_REFUSED,
|
531
|
+
G_IO_ERROR_PROXY_FAILED,
|
532
|
+
G_IO_ERROR_PROXY_AUTH_FAILED,
|
533
|
+
G_IO_ERROR_PROXY_NEED_AUTH,
|
534
|
+
G_IO_ERROR_PROXY_NOT_ALLOWED,
|
535
|
+
G_IO_ERROR_BROKEN_PIPE
|
536
|
+
} GIOErrorEnum;
|
537
|
+
|
538
|
+
|
539
|
+
/**
|
540
|
+
* GAskPasswordFlags:
|
541
|
+
* @G_ASK_PASSWORD_NEED_PASSWORD: operation requires a password.
|
542
|
+
* @G_ASK_PASSWORD_NEED_USERNAME: operation requires a username.
|
543
|
+
* @G_ASK_PASSWORD_NEED_DOMAIN: operation requires a domain.
|
544
|
+
* @G_ASK_PASSWORD_SAVING_SUPPORTED: operation supports saving settings.
|
545
|
+
* @G_ASK_PASSWORD_ANONYMOUS_SUPPORTED: operation supports anonymous users.
|
546
|
+
*
|
547
|
+
* #GAskPasswordFlags are used to request specific information from the
|
548
|
+
* user, or to notify the user of their choices in an authentication
|
549
|
+
* situation.
|
550
|
+
**/
|
551
|
+
typedef enum {
|
552
|
+
G_ASK_PASSWORD_NEED_PASSWORD = (1 << 0),
|
553
|
+
G_ASK_PASSWORD_NEED_USERNAME = (1 << 1),
|
554
|
+
G_ASK_PASSWORD_NEED_DOMAIN = (1 << 2),
|
555
|
+
G_ASK_PASSWORD_SAVING_SUPPORTED = (1 << 3),
|
556
|
+
G_ASK_PASSWORD_ANONYMOUS_SUPPORTED = (1 << 4)
|
557
|
+
} GAskPasswordFlags;
|
558
|
+
|
559
|
+
|
560
|
+
/**
|
561
|
+
* GPasswordSave:
|
562
|
+
* @G_PASSWORD_SAVE_NEVER: never save a password.
|
563
|
+
* @G_PASSWORD_SAVE_FOR_SESSION: save a password for the session.
|
564
|
+
* @G_PASSWORD_SAVE_PERMANENTLY: save a password permanently.
|
565
|
+
*
|
566
|
+
* #GPasswordSave is used to indicate the lifespan of a saved password.
|
567
|
+
*
|
568
|
+
* #Gvfs stores passwords in the Gnome keyring when this flag allows it
|
569
|
+
* to, and later retrieves it again from there.
|
570
|
+
**/
|
571
|
+
typedef enum {
|
572
|
+
G_PASSWORD_SAVE_NEVER,
|
573
|
+
G_PASSWORD_SAVE_FOR_SESSION,
|
574
|
+
G_PASSWORD_SAVE_PERMANENTLY
|
575
|
+
} GPasswordSave;
|
576
|
+
|
577
|
+
|
578
|
+
/**
|
579
|
+
* GMountOperationResult:
|
580
|
+
* @G_MOUNT_OPERATION_HANDLED: The request was fulfilled and the
|
581
|
+
* user specified data is now available
|
582
|
+
* @G_MOUNT_OPERATION_ABORTED: The user requested the mount operation
|
583
|
+
* to be aborted
|
584
|
+
* @G_MOUNT_OPERATION_UNHANDLED: The request was unhandled (i.e. not
|
585
|
+
* implemented)
|
586
|
+
*
|
587
|
+
* #GMountOperationResult is returned as a result when a request for
|
588
|
+
* information is send by the mounting operation.
|
589
|
+
**/
|
590
|
+
typedef enum {
|
591
|
+
G_MOUNT_OPERATION_HANDLED,
|
592
|
+
G_MOUNT_OPERATION_ABORTED,
|
593
|
+
G_MOUNT_OPERATION_UNHANDLED
|
594
|
+
} GMountOperationResult;
|
595
|
+
|
596
|
+
|
597
|
+
/**
|
598
|
+
* GOutputStreamSpliceFlags:
|
599
|
+
* @G_OUTPUT_STREAM_SPLICE_NONE: Do not close either stream.
|
600
|
+
* @G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE: Close the source stream after
|
601
|
+
* the splice.
|
602
|
+
* @G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET: Close the target stream after
|
603
|
+
* the splice.
|
604
|
+
*
|
605
|
+
* GOutputStreamSpliceFlags determine how streams should be spliced.
|
606
|
+
**/
|
607
|
+
typedef enum {
|
608
|
+
G_OUTPUT_STREAM_SPLICE_NONE = 0,
|
609
|
+
G_OUTPUT_STREAM_SPLICE_CLOSE_SOURCE = (1 << 0),
|
610
|
+
G_OUTPUT_STREAM_SPLICE_CLOSE_TARGET = (1 << 1)
|
611
|
+
} GOutputStreamSpliceFlags;
|
612
|
+
|
613
|
+
|
614
|
+
/**
|
615
|
+
* GIOStreamSpliceFlags:
|
616
|
+
* @G_IO_STREAM_SPLICE_NONE: Do not close either stream.
|
617
|
+
* @G_IO_STREAM_SPLICE_CLOSE_STREAM1: Close the first stream after
|
618
|
+
* the splice.
|
619
|
+
* @G_IO_STREAM_SPLICE_CLOSE_STREAM2: Close the second stream after
|
620
|
+
* the splice.
|
621
|
+
* @G_IO_STREAM_SPLICE_WAIT_FOR_BOTH: Wait for both splice operations to finish
|
622
|
+
* before calling the callback.
|
623
|
+
*
|
624
|
+
* GIOStreamSpliceFlags determine how streams should be spliced.
|
625
|
+
*
|
626
|
+
* Since: 2.28
|
627
|
+
**/
|
628
|
+
typedef enum {
|
629
|
+
G_IO_STREAM_SPLICE_NONE = 0,
|
630
|
+
G_IO_STREAM_SPLICE_CLOSE_STREAM1 = (1 << 0),
|
631
|
+
G_IO_STREAM_SPLICE_CLOSE_STREAM2 = (1 << 1),
|
632
|
+
G_IO_STREAM_SPLICE_WAIT_FOR_BOTH = (1 << 2)
|
633
|
+
} GIOStreamSpliceFlags;
|
634
|
+
|
635
|
+
/**
|
636
|
+
* GEmblemOrigin:
|
637
|
+
* @G_EMBLEM_ORIGIN_UNKNOWN: Emblem of unknown origin
|
638
|
+
* @G_EMBLEM_ORIGIN_DEVICE: Emblem adds device-specific information
|
639
|
+
* @G_EMBLEM_ORIGIN_LIVEMETADATA: Emblem depicts live metadata, such as "readonly"
|
640
|
+
* @G_EMBLEM_ORIGIN_TAG: Emblem comes from a user-defined tag, e.g. set by nautilus (in the future)
|
641
|
+
*
|
642
|
+
* GEmblemOrigin is used to add information about the origin of the emblem
|
643
|
+
* to #GEmblem.
|
644
|
+
*
|
645
|
+
* Since: 2.18
|
646
|
+
*/
|
647
|
+
typedef enum {
|
648
|
+
G_EMBLEM_ORIGIN_UNKNOWN,
|
649
|
+
G_EMBLEM_ORIGIN_DEVICE,
|
650
|
+
G_EMBLEM_ORIGIN_LIVEMETADATA,
|
651
|
+
G_EMBLEM_ORIGIN_TAG
|
652
|
+
} GEmblemOrigin;
|
653
|
+
|
654
|
+
/**
|
655
|
+
* GResolverError:
|
656
|
+
* @G_RESOLVER_ERROR_NOT_FOUND: the requested name/address/service was not
|
657
|
+
* found
|
658
|
+
* @G_RESOLVER_ERROR_TEMPORARY_FAILURE: the requested information could not
|
659
|
+
* be looked up due to a network error or similar problem
|
660
|
+
* @G_RESOLVER_ERROR_INTERNAL: unknown error
|
661
|
+
*
|
662
|
+
* An error code used with %G_RESOLVER_ERROR in a #GError returned
|
663
|
+
* from a #GResolver routine.
|
664
|
+
*
|
665
|
+
* Since: 2.22
|
666
|
+
*/
|
667
|
+
typedef enum {
|
668
|
+
G_RESOLVER_ERROR_NOT_FOUND,
|
669
|
+
G_RESOLVER_ERROR_TEMPORARY_FAILURE,
|
670
|
+
G_RESOLVER_ERROR_INTERNAL
|
671
|
+
} GResolverError;
|
672
|
+
|
673
|
+
/**
|
674
|
+
* GResolverRecordType:
|
675
|
+
* @G_RESOLVER_RECORD_SRV: lookup DNS SRV records for a domain
|
676
|
+
* @G_RESOLVER_RECORD_MX: lookup DNS MX records for a domain
|
677
|
+
* @G_RESOLVER_RECORD_TXT: lookup DNS TXT records for a name
|
678
|
+
* @G_RESOLVER_RECORD_SOA: lookup DNS SOA records for a zone
|
679
|
+
* @G_RESOLVER_RECORD_NS: lookup DNS NS records for a domain
|
680
|
+
*
|
681
|
+
* The type of record that g_resolver_lookup_records() or
|
682
|
+
* g_resolver_lookup_records_async() should retrieve. The records are returned
|
683
|
+
* as lists of #GVariant tuples. Each record type has different values in
|
684
|
+
* the variant tuples returned.
|
685
|
+
*
|
686
|
+
* %G_RESOLVER_RECORD_SRV records are returned as variants with the signature
|
687
|
+
* '(qqqs)', containing a guint16 with the priority, a guint16 with the
|
688
|
+
* weight, a guint16 with the port, and a string of the hostname.
|
689
|
+
*
|
690
|
+
* %G_RESOLVER_RECORD_MX records are returned as variants with the signature
|
691
|
+
* '(qs)', representing a guint16 with the preference, and a string containing
|
692
|
+
* the mail exchanger hostname.
|
693
|
+
*
|
694
|
+
* %G_RESOLVER_RECORD_TXT records are returned as variants with the signature
|
695
|
+
* '(as)', representing an array of the strings in the text record.
|
696
|
+
*
|
697
|
+
* %G_RESOLVER_RECORD_SOA records are returned as variants with the signature
|
698
|
+
* '(ssuuuuu)', representing a string containing the primary name server, a
|
699
|
+
* string containing the administrator, the serial as a guint32, the refresh
|
700
|
+
* interval as guint32, the retry interval as a guint32, the expire timeout
|
701
|
+
* as a guint32, and the ttl as a guint32.
|
702
|
+
*
|
703
|
+
* %G_RESOLVER_RECORD_NS records are returned as variants with the signature
|
704
|
+
* '(s)', representing a string of the hostname of the name server.
|
705
|
+
*
|
706
|
+
* Since: 2.34
|
707
|
+
*/
|
708
|
+
typedef enum {
|
709
|
+
G_RESOLVER_RECORD_SRV = 1,
|
710
|
+
G_RESOLVER_RECORD_MX,
|
711
|
+
G_RESOLVER_RECORD_TXT,
|
712
|
+
G_RESOLVER_RECORD_SOA,
|
713
|
+
G_RESOLVER_RECORD_NS
|
714
|
+
} GResolverRecordType;
|
715
|
+
|
716
|
+
/**
|
717
|
+
* GResourceError:
|
718
|
+
* @G_RESOURCE_ERROR_NOT_FOUND: no file was found at the requested path
|
719
|
+
* @G_RESOURCE_ERROR_INTERNAL: unknown error
|
720
|
+
*
|
721
|
+
* An error code used with %G_RESOURCE_ERROR in a #GError returned
|
722
|
+
* from a #GResource routine.
|
723
|
+
*
|
724
|
+
* Since: 2.32
|
725
|
+
*/
|
726
|
+
typedef enum {
|
727
|
+
G_RESOURCE_ERROR_NOT_FOUND,
|
728
|
+
G_RESOURCE_ERROR_INTERNAL
|
729
|
+
} GResourceError;
|
730
|
+
|
731
|
+
/**
|
732
|
+
* GResourceFlags:
|
733
|
+
* @G_RESOURCE_FLAGS_NONE: No flags set.
|
734
|
+
* @G_RESOURCE_FLAGS_COMPRESSED: The file is compressed.
|
735
|
+
*
|
736
|
+
* GResourceFlags give information about a particular file inside a resource
|
737
|
+
* bundle.
|
738
|
+
*
|
739
|
+
* Since: 2.32
|
740
|
+
**/
|
741
|
+
typedef enum {
|
742
|
+
G_RESOURCE_FLAGS_NONE = 0,
|
743
|
+
G_RESOURCE_FLAGS_COMPRESSED = (1<<0)
|
744
|
+
} GResourceFlags;
|
745
|
+
|
746
|
+
/**
|
747
|
+
* GResourceLookupFlags:
|
748
|
+
* @G_RESOURCE_LOOKUP_FLAGS_NONE: No flags set.
|
749
|
+
*
|
750
|
+
* GResourceLookupFlags determine how resource path lookups are handled.
|
751
|
+
*
|
752
|
+
* Since: 2.32
|
753
|
+
**/
|
754
|
+
typedef enum /*< flags >*/ {
|
755
|
+
G_RESOURCE_LOOKUP_FLAGS_NONE = 0
|
756
|
+
} GResourceLookupFlags;
|
757
|
+
|
758
|
+
/**
|
759
|
+
* GSocketFamily:
|
760
|
+
* @G_SOCKET_FAMILY_INVALID: no address family
|
761
|
+
* @G_SOCKET_FAMILY_IPV4: the IPv4 family
|
762
|
+
* @G_SOCKET_FAMILY_IPV6: the IPv6 family
|
763
|
+
* @G_SOCKET_FAMILY_UNIX: the UNIX domain family
|
764
|
+
*
|
765
|
+
* The protocol family of a #GSocketAddress. (These values are
|
766
|
+
* identical to the system defines %AF_INET, %AF_INET6 and %AF_UNIX,
|
767
|
+
* if available.)
|
768
|
+
*
|
769
|
+
* Since: 2.22
|
770
|
+
*/
|
771
|
+
typedef enum {
|
772
|
+
G_SOCKET_FAMILY_INVALID,
|
773
|
+
G_SOCKET_FAMILY_UNIX = GLIB_SYSDEF_AF_UNIX,
|
774
|
+
G_SOCKET_FAMILY_IPV4 = GLIB_SYSDEF_AF_INET,
|
775
|
+
G_SOCKET_FAMILY_IPV6 = GLIB_SYSDEF_AF_INET6
|
776
|
+
} GSocketFamily;
|
777
|
+
|
778
|
+
/**
|
779
|
+
* GSocketType:
|
780
|
+
* @G_SOCKET_TYPE_INVALID: Type unknown or wrong
|
781
|
+
* @G_SOCKET_TYPE_STREAM: Reliable connection-based byte streams (e.g. TCP).
|
782
|
+
* @G_SOCKET_TYPE_DATAGRAM: Connectionless, unreliable datagram passing.
|
783
|
+
* (e.g. UDP)
|
784
|
+
* @G_SOCKET_TYPE_SEQPACKET: Reliable connection-based passing of datagrams
|
785
|
+
* of fixed maximum length (e.g. SCTP).
|
786
|
+
*
|
787
|
+
* Flags used when creating a #GSocket. Some protocols may not implement
|
788
|
+
* all the socket types.
|
789
|
+
*
|
790
|
+
* Since: 2.22
|
791
|
+
*/
|
792
|
+
typedef enum
|
793
|
+
{
|
794
|
+
G_SOCKET_TYPE_INVALID,
|
795
|
+
G_SOCKET_TYPE_STREAM,
|
796
|
+
G_SOCKET_TYPE_DATAGRAM,
|
797
|
+
G_SOCKET_TYPE_SEQPACKET
|
798
|
+
} GSocketType;
|
799
|
+
|
800
|
+
/**
|
801
|
+
* GSocketMsgFlags:
|
802
|
+
* @G_SOCKET_MSG_NONE: No flags.
|
803
|
+
* @G_SOCKET_MSG_OOB: Request to send/receive out of band data.
|
804
|
+
* @G_SOCKET_MSG_PEEK: Read data from the socket without removing it from
|
805
|
+
* the queue.
|
806
|
+
* @G_SOCKET_MSG_DONTROUTE: Don't use a gateway to send out the packet,
|
807
|
+
* only send to hosts on directly connected networks.
|
808
|
+
*
|
809
|
+
* Flags used in g_socket_receive_message() and g_socket_send_message().
|
810
|
+
* The flags listed in the enum are some commonly available flags, but the
|
811
|
+
* values used for them are the same as on the platform, and any other flags
|
812
|
+
* are passed in/out as is. So to use a platform specific flag, just include
|
813
|
+
* the right system header and pass in the flag.
|
814
|
+
*
|
815
|
+
* Since: 2.22
|
816
|
+
*/
|
817
|
+
typedef enum /*< flags >*/
|
818
|
+
{
|
819
|
+
G_SOCKET_MSG_NONE,
|
820
|
+
G_SOCKET_MSG_OOB = GLIB_SYSDEF_MSG_OOB,
|
821
|
+
G_SOCKET_MSG_PEEK = GLIB_SYSDEF_MSG_PEEK,
|
822
|
+
G_SOCKET_MSG_DONTROUTE = GLIB_SYSDEF_MSG_DONTROUTE
|
823
|
+
} GSocketMsgFlags;
|
824
|
+
|
825
|
+
/**
|
826
|
+
* GSocketProtocol:
|
827
|
+
* @G_SOCKET_PROTOCOL_UNKNOWN: The protocol type is unknown
|
828
|
+
* @G_SOCKET_PROTOCOL_DEFAULT: The default protocol for the family/type
|
829
|
+
* @G_SOCKET_PROTOCOL_TCP: TCP over IP
|
830
|
+
* @G_SOCKET_PROTOCOL_UDP: UDP over IP
|
831
|
+
* @G_SOCKET_PROTOCOL_SCTP: SCTP over IP
|
832
|
+
*
|
833
|
+
* A protocol identifier is specified when creating a #GSocket, which is a
|
834
|
+
* family/type specific identifier, where 0 means the default protocol for
|
835
|
+
* the particular family/type.
|
836
|
+
*
|
837
|
+
* This enum contains a set of commonly available and used protocols. You
|
838
|
+
* can also pass any other identifiers handled by the platform in order to
|
839
|
+
* use protocols not listed here.
|
840
|
+
*
|
841
|
+
* Since: 2.22
|
842
|
+
*/
|
843
|
+
typedef enum {
|
844
|
+
G_SOCKET_PROTOCOL_UNKNOWN = -1,
|
845
|
+
G_SOCKET_PROTOCOL_DEFAULT = 0,
|
846
|
+
G_SOCKET_PROTOCOL_TCP = 6,
|
847
|
+
G_SOCKET_PROTOCOL_UDP = 17,
|
848
|
+
G_SOCKET_PROTOCOL_SCTP = 132
|
849
|
+
} GSocketProtocol;
|
850
|
+
|
851
|
+
/**
|
852
|
+
* GZlibCompressorFormat:
|
853
|
+
* @G_ZLIB_COMPRESSOR_FORMAT_ZLIB: deflate compression with zlib header
|
854
|
+
* @G_ZLIB_COMPRESSOR_FORMAT_GZIP: gzip file format
|
855
|
+
* @G_ZLIB_COMPRESSOR_FORMAT_RAW: deflate compression with no header
|
856
|
+
*
|
857
|
+
* Used to select the type of data format to use for #GZlibDecompressor
|
858
|
+
* and #GZlibCompressor.
|
859
|
+
*
|
860
|
+
* Since: 2.24
|
861
|
+
*/
|
862
|
+
typedef enum {
|
863
|
+
G_ZLIB_COMPRESSOR_FORMAT_ZLIB,
|
864
|
+
G_ZLIB_COMPRESSOR_FORMAT_GZIP,
|
865
|
+
G_ZLIB_COMPRESSOR_FORMAT_RAW
|
866
|
+
} GZlibCompressorFormat;
|
867
|
+
|
868
|
+
/**
|
869
|
+
* GUnixSocketAddressType:
|
870
|
+
* @G_UNIX_SOCKET_ADDRESS_INVALID: invalid
|
871
|
+
* @G_UNIX_SOCKET_ADDRESS_ANONYMOUS: anonymous
|
872
|
+
* @G_UNIX_SOCKET_ADDRESS_PATH: a filesystem path
|
873
|
+
* @G_UNIX_SOCKET_ADDRESS_ABSTRACT: an abstract name
|
874
|
+
* @G_UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED: an abstract name, 0-padded
|
875
|
+
* to the full length of a unix socket name
|
876
|
+
*
|
877
|
+
* The type of name used by a #GUnixSocketAddress.
|
878
|
+
* %G_UNIX_SOCKET_ADDRESS_PATH indicates a traditional unix domain
|
879
|
+
* socket bound to a filesystem path. %G_UNIX_SOCKET_ADDRESS_ANONYMOUS
|
880
|
+
* indicates a socket not bound to any name (eg, a client-side socket,
|
881
|
+
* or a socket created with socketpair()).
|
882
|
+
*
|
883
|
+
* For abstract sockets, there are two incompatible ways of naming
|
884
|
+
* them; the man pages suggest using the entire `struct sockaddr_un`
|
885
|
+
* as the name, padding the unused parts of the %sun_path field with
|
886
|
+
* zeroes; this corresponds to %G_UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED.
|
887
|
+
* However, many programs instead just use a portion of %sun_path, and
|
888
|
+
* pass an appropriate smaller length to bind() or connect(). This is
|
889
|
+
* %G_UNIX_SOCKET_ADDRESS_ABSTRACT.
|
890
|
+
*
|
891
|
+
* Since: 2.26
|
892
|
+
*/
|
893
|
+
typedef enum {
|
894
|
+
G_UNIX_SOCKET_ADDRESS_INVALID,
|
895
|
+
G_UNIX_SOCKET_ADDRESS_ANONYMOUS,
|
896
|
+
G_UNIX_SOCKET_ADDRESS_PATH,
|
897
|
+
G_UNIX_SOCKET_ADDRESS_ABSTRACT,
|
898
|
+
G_UNIX_SOCKET_ADDRESS_ABSTRACT_PADDED
|
899
|
+
} GUnixSocketAddressType;
|
900
|
+
|
901
|
+
/**
|
902
|
+
* GBusType:
|
903
|
+
* @G_BUS_TYPE_STARTER: An alias for the message bus that activated the process, if any.
|
904
|
+
* @G_BUS_TYPE_NONE: Not a message bus.
|
905
|
+
* @G_BUS_TYPE_SYSTEM: The system-wide message bus.
|
906
|
+
* @G_BUS_TYPE_SESSION: The login session message bus.
|
907
|
+
*
|
908
|
+
* An enumeration for well-known message buses.
|
909
|
+
*
|
910
|
+
* Since: 2.26
|
911
|
+
*/
|
912
|
+
typedef enum
|
913
|
+
{
|
914
|
+
G_BUS_TYPE_STARTER = -1,
|
915
|
+
G_BUS_TYPE_NONE = 0,
|
916
|
+
G_BUS_TYPE_SYSTEM = 1,
|
917
|
+
G_BUS_TYPE_SESSION = 2
|
918
|
+
} GBusType;
|
919
|
+
|
920
|
+
/**
|
921
|
+
* GBusNameOwnerFlags:
|
922
|
+
* @G_BUS_NAME_OWNER_FLAGS_NONE: No flags set.
|
923
|
+
* @G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT: Allow another message bus connection to claim the name.
|
924
|
+
* @G_BUS_NAME_OWNER_FLAGS_REPLACE: If another message bus connection owns the name and have
|
925
|
+
* specified #G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT, then take the name from the other connection.
|
926
|
+
*
|
927
|
+
* Flags used in g_bus_own_name().
|
928
|
+
*
|
929
|
+
* Since: 2.26
|
930
|
+
*/
|
931
|
+
typedef enum
|
932
|
+
{
|
933
|
+
G_BUS_NAME_OWNER_FLAGS_NONE = 0, /*< nick=none >*/
|
934
|
+
G_BUS_NAME_OWNER_FLAGS_ALLOW_REPLACEMENT = (1<<0), /*< nick=allow-replacement >*/
|
935
|
+
G_BUS_NAME_OWNER_FLAGS_REPLACE = (1<<1) /*< nick=replace >*/
|
936
|
+
} GBusNameOwnerFlags;
|
937
|
+
|
938
|
+
/**
|
939
|
+
* GBusNameWatcherFlags:
|
940
|
+
* @G_BUS_NAME_WATCHER_FLAGS_NONE: No flags set.
|
941
|
+
* @G_BUS_NAME_WATCHER_FLAGS_AUTO_START: If no-one owns the name when
|
942
|
+
* beginning to watch the name, ask the bus to launch an owner for the
|
943
|
+
* name.
|
944
|
+
*
|
945
|
+
* Flags used in g_bus_watch_name().
|
946
|
+
*
|
947
|
+
* Since: 2.26
|
948
|
+
*/
|
949
|
+
typedef enum
|
950
|
+
{
|
951
|
+
G_BUS_NAME_WATCHER_FLAGS_NONE = 0,
|
952
|
+
G_BUS_NAME_WATCHER_FLAGS_AUTO_START = (1<<0)
|
953
|
+
} GBusNameWatcherFlags;
|
954
|
+
|
955
|
+
/**
|
956
|
+
* GDBusProxyFlags:
|
957
|
+
* @G_DBUS_PROXY_FLAGS_NONE: No flags set.
|
958
|
+
* @G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES: Don't load properties.
|
959
|
+
* @G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS: Don't connect to signals on the remote object.
|
960
|
+
* @G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START: If not set and the proxy if for a well-known name,
|
961
|
+
* then request the bus to launch an owner for the name if no-one owns the name. This flag can
|
962
|
+
* only be used in proxies for well-known names.
|
963
|
+
* @G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES: If set, the property value for any <emphasis>invalidated property</emphasis> will be (asynchronously) retrieved upon receiving the <ulink url="http://dbus.freedesktop.org/doc/dbus-specification.html#standard-interfaces-properties">PropertiesChanged</ulink> D-Bus signal and the property will not cause emission of the #GDBusProxy::g-properties-changed signal. When the value is received the #GDBusProxy::g-properties-changed signal is emitted for the property along with the retrieved value. Since 2.32.
|
964
|
+
* @G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION: If the proxy is for a well-known name,
|
965
|
+
* do not ask the bus to launch an owner during proxy initialization, but allow it to be
|
966
|
+
* autostarted by a method call. This flag is only meaningful in proxies for well-known names,
|
967
|
+
* and only if %G_DBUS_PROXY_FLAGS_DO_NOT_AUTOSTART is not also specified.
|
968
|
+
*
|
969
|
+
* Flags used when constructing an instance of a #GDBusProxy derived class.
|
970
|
+
*
|
971
|
+
* Since: 2.26
|
972
|
+
*/
|
973
|
+
typedef enum
|
974
|
+
{
|
975
|
+
G_DBUS_PROXY_FLAGS_NONE = 0,
|
976
|
+
G_DBUS_PROXY_FLAGS_DO_NOT_LOAD_PROPERTIES = (1<<0),
|
977
|
+
G_DBUS_PROXY_FLAGS_DO_NOT_CONNECT_SIGNALS = (1<<1),
|
978
|
+
G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START = (1<<2),
|
979
|
+
G_DBUS_PROXY_FLAGS_GET_INVALIDATED_PROPERTIES = (1<<3),
|
980
|
+
G_DBUS_PROXY_FLAGS_DO_NOT_AUTO_START_AT_CONSTRUCTION = (1<<4)
|
981
|
+
} GDBusProxyFlags;
|
982
|
+
|
983
|
+
/**
|
984
|
+
* GDBusError:
|
985
|
+
* @G_DBUS_ERROR_FAILED:
|
986
|
+
* A generic error; "something went wrong" - see the error message for
|
987
|
+
* more.
|
988
|
+
* @G_DBUS_ERROR_NO_MEMORY:
|
989
|
+
* There was not enough memory to complete an operation.
|
990
|
+
* @G_DBUS_ERROR_SERVICE_UNKNOWN:
|
991
|
+
* The bus doesn't know how to launch a service to supply the bus name
|
992
|
+
* you wanted.
|
993
|
+
* @G_DBUS_ERROR_NAME_HAS_NO_OWNER:
|
994
|
+
* The bus name you referenced doesn't exist (i.e. no application owns
|
995
|
+
* it).
|
996
|
+
* @G_DBUS_ERROR_NO_REPLY:
|
997
|
+
* No reply to a message expecting one, usually means a timeout occurred.
|
998
|
+
* @G_DBUS_ERROR_IO_ERROR:
|
999
|
+
* Something went wrong reading or writing to a socket, for example.
|
1000
|
+
* @G_DBUS_ERROR_BAD_ADDRESS:
|
1001
|
+
* A D-Bus bus address was malformed.
|
1002
|
+
* @G_DBUS_ERROR_NOT_SUPPORTED:
|
1003
|
+
* Requested operation isn't supported (like ENOSYS on UNIX).
|
1004
|
+
* @G_DBUS_ERROR_LIMITS_EXCEEDED:
|
1005
|
+
* Some limited resource is exhausted.
|
1006
|
+
* @G_DBUS_ERROR_ACCESS_DENIED:
|
1007
|
+
* Security restrictions don't allow doing what you're trying to do.
|
1008
|
+
* @G_DBUS_ERROR_AUTH_FAILED:
|
1009
|
+
* Authentication didn't work.
|
1010
|
+
* @G_DBUS_ERROR_NO_SERVER:
|
1011
|
+
* Unable to connect to server (probably caused by ECONNREFUSED on a
|
1012
|
+
* socket).
|
1013
|
+
* @G_DBUS_ERROR_TIMEOUT:
|
1014
|
+
* Certain timeout errors, possibly ETIMEDOUT on a socket. Note that
|
1015
|
+
* %G_DBUS_ERROR_NO_REPLY is used for message reply timeouts. Warning:
|
1016
|
+
* this is confusingly-named given that %G_DBUS_ERROR_TIMED_OUT also
|
1017
|
+
* exists. We can't fix it for compatibility reasons so just be
|
1018
|
+
* careful.
|
1019
|
+
* @G_DBUS_ERROR_NO_NETWORK:
|
1020
|
+
* No network access (probably ENETUNREACH on a socket).
|
1021
|
+
* @G_DBUS_ERROR_ADDRESS_IN_USE:
|
1022
|
+
* Can't bind a socket since its address is in use (i.e. EADDRINUSE).
|
1023
|
+
* @G_DBUS_ERROR_DISCONNECTED:
|
1024
|
+
* The connection is disconnected and you're trying to use it.
|
1025
|
+
* @G_DBUS_ERROR_INVALID_ARGS:
|
1026
|
+
* Invalid arguments passed to a method call.
|
1027
|
+
* @G_DBUS_ERROR_FILE_NOT_FOUND:
|
1028
|
+
* Missing file.
|
1029
|
+
* @G_DBUS_ERROR_FILE_EXISTS:
|
1030
|
+
* Existing file and the operation you're using does not silently overwrite.
|
1031
|
+
* @G_DBUS_ERROR_UNKNOWN_METHOD:
|
1032
|
+
* Method name you invoked isn't known by the object you invoked it on.
|
1033
|
+
* @G_DBUS_ERROR_UNKNOWN_OBJECT:
|
1034
|
+
* Object you invoked a method on isn't known. Since 2.42
|
1035
|
+
* @G_DBUS_ERROR_UNKNOWN_INTERFACE:
|
1036
|
+
* Interface you invoked a method on isn't known by the object. Since 2.42
|
1037
|
+
* @G_DBUS_ERROR_UNKNOWN_PROPERTY:
|
1038
|
+
* Property you tried to access isn't known by the object. Since 2.42
|
1039
|
+
* @G_DBUS_ERROR_PROPERTY_READ_ONLY:
|
1040
|
+
* Property you tried to set is read-only. Since 2.42
|
1041
|
+
* @G_DBUS_ERROR_TIMED_OUT:
|
1042
|
+
* Certain timeout errors, e.g. while starting a service. Warning: this is
|
1043
|
+
* confusingly-named given that %G_DBUS_ERROR_TIMEOUT also exists. We
|
1044
|
+
* can't fix it for compatibility reasons so just be careful.
|
1045
|
+
* @G_DBUS_ERROR_MATCH_RULE_NOT_FOUND:
|
1046
|
+
* Tried to remove or modify a match rule that didn't exist.
|
1047
|
+
* @G_DBUS_ERROR_MATCH_RULE_INVALID:
|
1048
|
+
* The match rule isn't syntactically valid.
|
1049
|
+
* @G_DBUS_ERROR_SPAWN_EXEC_FAILED:
|
1050
|
+
* While starting a new process, the exec() call failed.
|
1051
|
+
* @G_DBUS_ERROR_SPAWN_FORK_FAILED:
|
1052
|
+
* While starting a new process, the fork() call failed.
|
1053
|
+
* @G_DBUS_ERROR_SPAWN_CHILD_EXITED:
|
1054
|
+
* While starting a new process, the child exited with a status code.
|
1055
|
+
* @G_DBUS_ERROR_SPAWN_CHILD_SIGNALED:
|
1056
|
+
* While starting a new process, the child exited on a signal.
|
1057
|
+
* @G_DBUS_ERROR_SPAWN_FAILED:
|
1058
|
+
* While starting a new process, something went wrong.
|
1059
|
+
* @G_DBUS_ERROR_SPAWN_SETUP_FAILED:
|
1060
|
+
* We failed to setup the environment correctly.
|
1061
|
+
* @G_DBUS_ERROR_SPAWN_CONFIG_INVALID:
|
1062
|
+
* We failed to setup the config parser correctly.
|
1063
|
+
* @G_DBUS_ERROR_SPAWN_SERVICE_INVALID:
|
1064
|
+
* Bus name was not valid.
|
1065
|
+
* @G_DBUS_ERROR_SPAWN_SERVICE_NOT_FOUND:
|
1066
|
+
* Service file not found in system-services directory.
|
1067
|
+
* @G_DBUS_ERROR_SPAWN_PERMISSIONS_INVALID:
|
1068
|
+
* Permissions are incorrect on the setuid helper.
|
1069
|
+
* @G_DBUS_ERROR_SPAWN_FILE_INVALID:
|
1070
|
+
* Service file invalid (Name, User or Exec missing).
|
1071
|
+
* @G_DBUS_ERROR_SPAWN_NO_MEMORY:
|
1072
|
+
* Tried to get a UNIX process ID and it wasn't available.
|
1073
|
+
* @G_DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN:
|
1074
|
+
* Tried to get a UNIX process ID and it wasn't available.
|
1075
|
+
* @G_DBUS_ERROR_INVALID_SIGNATURE:
|
1076
|
+
* A type signature is not valid.
|
1077
|
+
* @G_DBUS_ERROR_INVALID_FILE_CONTENT:
|
1078
|
+
* A file contains invalid syntax or is otherwise broken.
|
1079
|
+
* @G_DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN:
|
1080
|
+
* Asked for SELinux security context and it wasn't available.
|
1081
|
+
* @G_DBUS_ERROR_ADT_AUDIT_DATA_UNKNOWN:
|
1082
|
+
* Asked for ADT audit data and it wasn't available.
|
1083
|
+
* @G_DBUS_ERROR_OBJECT_PATH_IN_USE:
|
1084
|
+
* There's already an object with the requested object path.
|
1085
|
+
*
|
1086
|
+
* Error codes for the %G_DBUS_ERROR error domain.
|
1087
|
+
*
|
1088
|
+
* Since: 2.26
|
1089
|
+
*/
|
1090
|
+
typedef enum
|
1091
|
+
{
|
1092
|
+
/* Well-known errors in the org.freedesktop.DBus.Error namespace */
|
1093
|
+
G_DBUS_ERROR_FAILED, /* org.freedesktop.DBus.Error.Failed */
|
1094
|
+
G_DBUS_ERROR_NO_MEMORY, /* org.freedesktop.DBus.Error.NoMemory */
|
1095
|
+
G_DBUS_ERROR_SERVICE_UNKNOWN, /* org.freedesktop.DBus.Error.ServiceUnknown */
|
1096
|
+
G_DBUS_ERROR_NAME_HAS_NO_OWNER, /* org.freedesktop.DBus.Error.NameHasNoOwner */
|
1097
|
+
G_DBUS_ERROR_NO_REPLY, /* org.freedesktop.DBus.Error.NoReply */
|
1098
|
+
G_DBUS_ERROR_IO_ERROR, /* org.freedesktop.DBus.Error.IOError */
|
1099
|
+
G_DBUS_ERROR_BAD_ADDRESS, /* org.freedesktop.DBus.Error.BadAddress */
|
1100
|
+
G_DBUS_ERROR_NOT_SUPPORTED, /* org.freedesktop.DBus.Error.NotSupported */
|
1101
|
+
G_DBUS_ERROR_LIMITS_EXCEEDED, /* org.freedesktop.DBus.Error.LimitsExceeded */
|
1102
|
+
G_DBUS_ERROR_ACCESS_DENIED, /* org.freedesktop.DBus.Error.AccessDenied */
|
1103
|
+
G_DBUS_ERROR_AUTH_FAILED, /* org.freedesktop.DBus.Error.AuthFailed */
|
1104
|
+
G_DBUS_ERROR_NO_SERVER, /* org.freedesktop.DBus.Error.NoServer */
|
1105
|
+
G_DBUS_ERROR_TIMEOUT, /* org.freedesktop.DBus.Error.Timeout */
|
1106
|
+
G_DBUS_ERROR_NO_NETWORK, /* org.freedesktop.DBus.Error.NoNetwork */
|
1107
|
+
G_DBUS_ERROR_ADDRESS_IN_USE, /* org.freedesktop.DBus.Error.AddressInUse */
|
1108
|
+
G_DBUS_ERROR_DISCONNECTED, /* org.freedesktop.DBus.Error.Disconnected */
|
1109
|
+
G_DBUS_ERROR_INVALID_ARGS, /* org.freedesktop.DBus.Error.InvalidArgs */
|
1110
|
+
G_DBUS_ERROR_FILE_NOT_FOUND, /* org.freedesktop.DBus.Error.FileNotFound */
|
1111
|
+
G_DBUS_ERROR_FILE_EXISTS, /* org.freedesktop.DBus.Error.FileExists */
|
1112
|
+
G_DBUS_ERROR_UNKNOWN_METHOD, /* org.freedesktop.DBus.Error.UnknownMethod */
|
1113
|
+
G_DBUS_ERROR_TIMED_OUT, /* org.freedesktop.DBus.Error.TimedOut */
|
1114
|
+
G_DBUS_ERROR_MATCH_RULE_NOT_FOUND, /* org.freedesktop.DBus.Error.MatchRuleNotFound */
|
1115
|
+
G_DBUS_ERROR_MATCH_RULE_INVALID, /* org.freedesktop.DBus.Error.MatchRuleInvalid */
|
1116
|
+
G_DBUS_ERROR_SPAWN_EXEC_FAILED, /* org.freedesktop.DBus.Error.Spawn.ExecFailed */
|
1117
|
+
G_DBUS_ERROR_SPAWN_FORK_FAILED, /* org.freedesktop.DBus.Error.Spawn.ForkFailed */
|
1118
|
+
G_DBUS_ERROR_SPAWN_CHILD_EXITED, /* org.freedesktop.DBus.Error.Spawn.ChildExited */
|
1119
|
+
G_DBUS_ERROR_SPAWN_CHILD_SIGNALED, /* org.freedesktop.DBus.Error.Spawn.ChildSignaled */
|
1120
|
+
G_DBUS_ERROR_SPAWN_FAILED, /* org.freedesktop.DBus.Error.Spawn.Failed */
|
1121
|
+
G_DBUS_ERROR_SPAWN_SETUP_FAILED, /* org.freedesktop.DBus.Error.Spawn.FailedToSetup */
|
1122
|
+
G_DBUS_ERROR_SPAWN_CONFIG_INVALID, /* org.freedesktop.DBus.Error.Spawn.ConfigInvalid */
|
1123
|
+
G_DBUS_ERROR_SPAWN_SERVICE_INVALID, /* org.freedesktop.DBus.Error.Spawn.ServiceNotValid */
|
1124
|
+
G_DBUS_ERROR_SPAWN_SERVICE_NOT_FOUND, /* org.freedesktop.DBus.Error.Spawn.ServiceNotFound */
|
1125
|
+
G_DBUS_ERROR_SPAWN_PERMISSIONS_INVALID, /* org.freedesktop.DBus.Error.Spawn.PermissionsInvalid */
|
1126
|
+
G_DBUS_ERROR_SPAWN_FILE_INVALID, /* org.freedesktop.DBus.Error.Spawn.FileInvalid */
|
1127
|
+
G_DBUS_ERROR_SPAWN_NO_MEMORY, /* org.freedesktop.DBus.Error.Spawn.NoMemory */
|
1128
|
+
G_DBUS_ERROR_UNIX_PROCESS_ID_UNKNOWN, /* org.freedesktop.DBus.Error.UnixProcessIdUnknown */
|
1129
|
+
G_DBUS_ERROR_INVALID_SIGNATURE, /* org.freedesktop.DBus.Error.InvalidSignature */
|
1130
|
+
G_DBUS_ERROR_INVALID_FILE_CONTENT, /* org.freedesktop.DBus.Error.InvalidFileContent */
|
1131
|
+
G_DBUS_ERROR_SELINUX_SECURITY_CONTEXT_UNKNOWN, /* org.freedesktop.DBus.Error.SELinuxSecurityContextUnknown */
|
1132
|
+
G_DBUS_ERROR_ADT_AUDIT_DATA_UNKNOWN, /* org.freedesktop.DBus.Error.AdtAuditDataUnknown */
|
1133
|
+
G_DBUS_ERROR_OBJECT_PATH_IN_USE, /* org.freedesktop.DBus.Error.ObjectPathInUse */
|
1134
|
+
G_DBUS_ERROR_UNKNOWN_OBJECT, /* org.freedesktop.DBus.Error.UnknownObject */
|
1135
|
+
G_DBUS_ERROR_UNKNOWN_INTERFACE, /* org.freedesktop.DBus.Error.UnknownInterface */
|
1136
|
+
G_DBUS_ERROR_UNKNOWN_PROPERTY, /* org.freedesktop.DBus.Error.UnknownProperty */
|
1137
|
+
G_DBUS_ERROR_PROPERTY_READ_ONLY /* org.freedesktop.DBus.Error.PropertyReadOnly */
|
1138
|
+
} GDBusError;
|
1139
|
+
/* Remember to update g_dbus_error_quark() in gdbuserror.c if you extend this enumeration */
|
1140
|
+
|
1141
|
+
/**
|
1142
|
+
* GDBusConnectionFlags:
|
1143
|
+
* @G_DBUS_CONNECTION_FLAGS_NONE: No flags set.
|
1144
|
+
* @G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT: Perform authentication against server.
|
1145
|
+
* @G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER: Perform authentication against client.
|
1146
|
+
* @G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS: When
|
1147
|
+
* authenticating as a server, allow the anonymous authentication
|
1148
|
+
* method.
|
1149
|
+
* @G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION: Pass this flag if connecting to a peer that is a
|
1150
|
+
* message bus. This means that the Hello() method will be invoked as part of the connection setup.
|
1151
|
+
* @G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING: If set, processing of D-Bus messages is
|
1152
|
+
* delayed until g_dbus_connection_start_message_processing() is called.
|
1153
|
+
*
|
1154
|
+
* Flags used when creating a new #GDBusConnection.
|
1155
|
+
*
|
1156
|
+
* Since: 2.26
|
1157
|
+
*/
|
1158
|
+
typedef enum {
|
1159
|
+
G_DBUS_CONNECTION_FLAGS_NONE = 0,
|
1160
|
+
G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_CLIENT = (1<<0),
|
1161
|
+
G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_SERVER = (1<<1),
|
1162
|
+
G_DBUS_CONNECTION_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS = (1<<2),
|
1163
|
+
G_DBUS_CONNECTION_FLAGS_MESSAGE_BUS_CONNECTION = (1<<3),
|
1164
|
+
G_DBUS_CONNECTION_FLAGS_DELAY_MESSAGE_PROCESSING = (1<<4)
|
1165
|
+
} GDBusConnectionFlags;
|
1166
|
+
|
1167
|
+
/**
|
1168
|
+
* GDBusCapabilityFlags:
|
1169
|
+
* @G_DBUS_CAPABILITY_FLAGS_NONE: No flags set.
|
1170
|
+
* @G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING: The connection
|
1171
|
+
* supports exchanging UNIX file descriptors with the remote peer.
|
1172
|
+
*
|
1173
|
+
* Capabilities negotiated with the remote peer.
|
1174
|
+
*
|
1175
|
+
* Since: 2.26
|
1176
|
+
*/
|
1177
|
+
typedef enum {
|
1178
|
+
G_DBUS_CAPABILITY_FLAGS_NONE = 0,
|
1179
|
+
G_DBUS_CAPABILITY_FLAGS_UNIX_FD_PASSING = (1<<0)
|
1180
|
+
} GDBusCapabilityFlags;
|
1181
|
+
|
1182
|
+
/**
|
1183
|
+
* GDBusCallFlags:
|
1184
|
+
* @G_DBUS_CALL_FLAGS_NONE: No flags set.
|
1185
|
+
* @G_DBUS_CALL_FLAGS_NO_AUTO_START: The bus must not launch
|
1186
|
+
* an owner for the destination name in response to this method
|
1187
|
+
* invocation.
|
1188
|
+
*
|
1189
|
+
* Flags used in g_dbus_connection_call() and similar APIs.
|
1190
|
+
*
|
1191
|
+
* Since: 2.26
|
1192
|
+
*/
|
1193
|
+
typedef enum {
|
1194
|
+
G_DBUS_CALL_FLAGS_NONE = 0,
|
1195
|
+
G_DBUS_CALL_FLAGS_NO_AUTO_START = (1<<0)
|
1196
|
+
} GDBusCallFlags;
|
1197
|
+
/* (1<<31) is reserved for internal use by GDBusConnection, do not use it. */
|
1198
|
+
|
1199
|
+
/**
|
1200
|
+
* GDBusMessageType:
|
1201
|
+
* @G_DBUS_MESSAGE_TYPE_INVALID: Message is of invalid type.
|
1202
|
+
* @G_DBUS_MESSAGE_TYPE_METHOD_CALL: Method call.
|
1203
|
+
* @G_DBUS_MESSAGE_TYPE_METHOD_RETURN: Method reply.
|
1204
|
+
* @G_DBUS_MESSAGE_TYPE_ERROR: Error reply.
|
1205
|
+
* @G_DBUS_MESSAGE_TYPE_SIGNAL: Signal emission.
|
1206
|
+
*
|
1207
|
+
* Message types used in #GDBusMessage.
|
1208
|
+
*
|
1209
|
+
* Since: 2.26
|
1210
|
+
*/
|
1211
|
+
typedef enum {
|
1212
|
+
G_DBUS_MESSAGE_TYPE_INVALID,
|
1213
|
+
G_DBUS_MESSAGE_TYPE_METHOD_CALL,
|
1214
|
+
G_DBUS_MESSAGE_TYPE_METHOD_RETURN,
|
1215
|
+
G_DBUS_MESSAGE_TYPE_ERROR,
|
1216
|
+
G_DBUS_MESSAGE_TYPE_SIGNAL
|
1217
|
+
} GDBusMessageType;
|
1218
|
+
|
1219
|
+
/**
|
1220
|
+
* GDBusMessageFlags:
|
1221
|
+
* @G_DBUS_MESSAGE_FLAGS_NONE: No flags set.
|
1222
|
+
* @G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED: A reply is not expected.
|
1223
|
+
* @G_DBUS_MESSAGE_FLAGS_NO_AUTO_START: The bus must not launch an
|
1224
|
+
* owner for the destination name in response to this message.
|
1225
|
+
*
|
1226
|
+
* Message flags used in #GDBusMessage.
|
1227
|
+
*
|
1228
|
+
* Since: 2.26
|
1229
|
+
*/
|
1230
|
+
typedef enum {
|
1231
|
+
G_DBUS_MESSAGE_FLAGS_NONE = 0,
|
1232
|
+
G_DBUS_MESSAGE_FLAGS_NO_REPLY_EXPECTED = (1<<0),
|
1233
|
+
G_DBUS_MESSAGE_FLAGS_NO_AUTO_START = (1<<1)
|
1234
|
+
} GDBusMessageFlags;
|
1235
|
+
|
1236
|
+
/**
|
1237
|
+
* GDBusMessageHeaderField:
|
1238
|
+
* @G_DBUS_MESSAGE_HEADER_FIELD_INVALID: Not a valid header field.
|
1239
|
+
* @G_DBUS_MESSAGE_HEADER_FIELD_PATH: The object path.
|
1240
|
+
* @G_DBUS_MESSAGE_HEADER_FIELD_INTERFACE: The interface name.
|
1241
|
+
* @G_DBUS_MESSAGE_HEADER_FIELD_MEMBER: The method or signal name.
|
1242
|
+
* @G_DBUS_MESSAGE_HEADER_FIELD_ERROR_NAME: The name of the error that occurred.
|
1243
|
+
* @G_DBUS_MESSAGE_HEADER_FIELD_REPLY_SERIAL: The serial number the message is a reply to.
|
1244
|
+
* @G_DBUS_MESSAGE_HEADER_FIELD_DESTINATION: The name the message is intended for.
|
1245
|
+
* @G_DBUS_MESSAGE_HEADER_FIELD_SENDER: Unique name of the sender of the message (filled in by the bus).
|
1246
|
+
* @G_DBUS_MESSAGE_HEADER_FIELD_SIGNATURE: The signature of the message body.
|
1247
|
+
* @G_DBUS_MESSAGE_HEADER_FIELD_NUM_UNIX_FDS: The number of UNIX file descriptors that accompany the message.
|
1248
|
+
*
|
1249
|
+
* Header fields used in #GDBusMessage.
|
1250
|
+
*
|
1251
|
+
* Since: 2.26
|
1252
|
+
*/
|
1253
|
+
typedef enum {
|
1254
|
+
G_DBUS_MESSAGE_HEADER_FIELD_INVALID,
|
1255
|
+
G_DBUS_MESSAGE_HEADER_FIELD_PATH,
|
1256
|
+
G_DBUS_MESSAGE_HEADER_FIELD_INTERFACE,
|
1257
|
+
G_DBUS_MESSAGE_HEADER_FIELD_MEMBER,
|
1258
|
+
G_DBUS_MESSAGE_HEADER_FIELD_ERROR_NAME,
|
1259
|
+
G_DBUS_MESSAGE_HEADER_FIELD_REPLY_SERIAL,
|
1260
|
+
G_DBUS_MESSAGE_HEADER_FIELD_DESTINATION,
|
1261
|
+
G_DBUS_MESSAGE_HEADER_FIELD_SENDER,
|
1262
|
+
G_DBUS_MESSAGE_HEADER_FIELD_SIGNATURE,
|
1263
|
+
G_DBUS_MESSAGE_HEADER_FIELD_NUM_UNIX_FDS
|
1264
|
+
} GDBusMessageHeaderField;
|
1265
|
+
|
1266
|
+
/**
|
1267
|
+
* GDBusPropertyInfoFlags:
|
1268
|
+
* @G_DBUS_PROPERTY_INFO_FLAGS_NONE: No flags set.
|
1269
|
+
* @G_DBUS_PROPERTY_INFO_FLAGS_READABLE: Property is readable.
|
1270
|
+
* @G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE: Property is writable.
|
1271
|
+
*
|
1272
|
+
* Flags describing the access control of a D-Bus property.
|
1273
|
+
*
|
1274
|
+
* Since: 2.26
|
1275
|
+
*/
|
1276
|
+
typedef enum
|
1277
|
+
{
|
1278
|
+
G_DBUS_PROPERTY_INFO_FLAGS_NONE = 0,
|
1279
|
+
G_DBUS_PROPERTY_INFO_FLAGS_READABLE = (1<<0),
|
1280
|
+
G_DBUS_PROPERTY_INFO_FLAGS_WRITABLE = (1<<1)
|
1281
|
+
} GDBusPropertyInfoFlags;
|
1282
|
+
|
1283
|
+
/**
|
1284
|
+
* GDBusSubtreeFlags:
|
1285
|
+
* @G_DBUS_SUBTREE_FLAGS_NONE: No flags set.
|
1286
|
+
* @G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES: Method calls to objects not in the enumerated range
|
1287
|
+
* will still be dispatched. This is useful if you want
|
1288
|
+
* to dynamically spawn objects in the subtree.
|
1289
|
+
*
|
1290
|
+
* Flags passed to g_dbus_connection_register_subtree().
|
1291
|
+
*
|
1292
|
+
* Since: 2.26
|
1293
|
+
*/
|
1294
|
+
typedef enum
|
1295
|
+
{
|
1296
|
+
G_DBUS_SUBTREE_FLAGS_NONE = 0,
|
1297
|
+
G_DBUS_SUBTREE_FLAGS_DISPATCH_TO_UNENUMERATED_NODES = (1<<0)
|
1298
|
+
} GDBusSubtreeFlags;
|
1299
|
+
|
1300
|
+
/**
|
1301
|
+
* GDBusServerFlags:
|
1302
|
+
* @G_DBUS_SERVER_FLAGS_NONE: No flags set.
|
1303
|
+
* @G_DBUS_SERVER_FLAGS_RUN_IN_THREAD: All #GDBusServer::new-connection
|
1304
|
+
* signals will run in separated dedicated threads (see signal for
|
1305
|
+
* details).
|
1306
|
+
* @G_DBUS_SERVER_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS: Allow the anonymous
|
1307
|
+
* authentication method.
|
1308
|
+
*
|
1309
|
+
* Flags used when creating a #GDBusServer.
|
1310
|
+
*
|
1311
|
+
* Since: 2.26
|
1312
|
+
*/
|
1313
|
+
typedef enum
|
1314
|
+
{
|
1315
|
+
G_DBUS_SERVER_FLAGS_NONE = 0,
|
1316
|
+
G_DBUS_SERVER_FLAGS_RUN_IN_THREAD = (1<<0),
|
1317
|
+
G_DBUS_SERVER_FLAGS_AUTHENTICATION_ALLOW_ANONYMOUS = (1<<1)
|
1318
|
+
} GDBusServerFlags;
|
1319
|
+
|
1320
|
+
/**
|
1321
|
+
* GDBusSignalFlags:
|
1322
|
+
* @G_DBUS_SIGNAL_FLAGS_NONE: No flags set.
|
1323
|
+
* @G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE: Don't actually send the AddMatch
|
1324
|
+
* D-Bus call for this signal subscription. This gives you more control
|
1325
|
+
* over which match rules you add (but you must add them manually).
|
1326
|
+
* @G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_NAMESPACE: Match first arguments that
|
1327
|
+
* contain a bus or interface name with the given namespace.
|
1328
|
+
* @G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_PATH: Match first arguments that
|
1329
|
+
* contain an object path that is either equivalent to the given path,
|
1330
|
+
* or one of the paths is a subpath of the other.
|
1331
|
+
*
|
1332
|
+
* Flags used when subscribing to signals via g_dbus_connection_signal_subscribe().
|
1333
|
+
*
|
1334
|
+
* Since: 2.26
|
1335
|
+
*/
|
1336
|
+
typedef enum /*< flags >*/
|
1337
|
+
{
|
1338
|
+
G_DBUS_SIGNAL_FLAGS_NONE = 0,
|
1339
|
+
G_DBUS_SIGNAL_FLAGS_NO_MATCH_RULE = (1<<0),
|
1340
|
+
G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_NAMESPACE = (1<<1),
|
1341
|
+
G_DBUS_SIGNAL_FLAGS_MATCH_ARG0_PATH = (1<<2)
|
1342
|
+
} GDBusSignalFlags;
|
1343
|
+
|
1344
|
+
/**
|
1345
|
+
* GDBusSendMessageFlags:
|
1346
|
+
* @G_DBUS_SEND_MESSAGE_FLAGS_NONE: No flags set.
|
1347
|
+
* @G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL: Do not automatically
|
1348
|
+
* assign a serial number from the #GDBusConnection object when
|
1349
|
+
* sending a message.
|
1350
|
+
*
|
1351
|
+
* Flags used when sending #GDBusMessages on a #GDBusConnection.
|
1352
|
+
*
|
1353
|
+
* Since: 2.26
|
1354
|
+
*/
|
1355
|
+
typedef enum
|
1356
|
+
{
|
1357
|
+
G_DBUS_SEND_MESSAGE_FLAGS_NONE = 0,
|
1358
|
+
G_DBUS_SEND_MESSAGE_FLAGS_PRESERVE_SERIAL = (1<<0)
|
1359
|
+
} GDBusSendMessageFlags;
|
1360
|
+
/* (1<<31) is reserved for internal use by GDBusConnection, do not use it. */
|
1361
|
+
|
1362
|
+
/**
|
1363
|
+
* GCredentialsType:
|
1364
|
+
* @G_CREDENTIALS_TYPE_INVALID: Indicates an invalid native credential type.
|
1365
|
+
* @G_CREDENTIALS_TYPE_LINUX_UCRED: The native credentials type is a <type>struct ucred</type>.
|
1366
|
+
* @G_CREDENTIALS_TYPE_FREEBSD_CMSGCRED: The native credentials type is a <type>struct cmsgcred</type>.
|
1367
|
+
* @G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED: The native credentials type is a <type>struct sockpeercred</type>. Added in 2.30.
|
1368
|
+
* @G_CREDENTIALS_TYPE_SOLARIS_UCRED: The native credentials type is a <type>ucred_t</type>. Added in 2.40.
|
1369
|
+
* @G_CREDENTIALS_TYPE_NETBSD_UNPCBID: The native credentials type is a <type>struct unpcbid</type>.
|
1370
|
+
*
|
1371
|
+
* Enumeration describing different kinds of native credential types.
|
1372
|
+
*
|
1373
|
+
* Since: 2.26
|
1374
|
+
*/
|
1375
|
+
typedef enum
|
1376
|
+
{
|
1377
|
+
G_CREDENTIALS_TYPE_INVALID,
|
1378
|
+
G_CREDENTIALS_TYPE_LINUX_UCRED,
|
1379
|
+
G_CREDENTIALS_TYPE_FREEBSD_CMSGCRED,
|
1380
|
+
G_CREDENTIALS_TYPE_OPENBSD_SOCKPEERCRED,
|
1381
|
+
G_CREDENTIALS_TYPE_SOLARIS_UCRED,
|
1382
|
+
G_CREDENTIALS_TYPE_NETBSD_UNPCBID
|
1383
|
+
} GCredentialsType;
|
1384
|
+
|
1385
|
+
/**
|
1386
|
+
* GDBusMessageByteOrder:
|
1387
|
+
* @G_DBUS_MESSAGE_BYTE_ORDER_BIG_ENDIAN: The byte order is big endian.
|
1388
|
+
* @G_DBUS_MESSAGE_BYTE_ORDER_LITTLE_ENDIAN: The byte order is little endian.
|
1389
|
+
*
|
1390
|
+
* Enumeration used to describe the byte order of a D-Bus message.
|
1391
|
+
*
|
1392
|
+
* Since: 2.26
|
1393
|
+
*/
|
1394
|
+
typedef enum
|
1395
|
+
{
|
1396
|
+
G_DBUS_MESSAGE_BYTE_ORDER_BIG_ENDIAN = 'B',
|
1397
|
+
G_DBUS_MESSAGE_BYTE_ORDER_LITTLE_ENDIAN = 'l'
|
1398
|
+
} GDBusMessageByteOrder;
|
1399
|
+
|
1400
|
+
/**
|
1401
|
+
* GApplicationFlags:
|
1402
|
+
* @G_APPLICATION_FLAGS_NONE: Default
|
1403
|
+
* @G_APPLICATION_IS_SERVICE: Run as a service. In this mode, registration
|
1404
|
+
* fails if the service is already running, and the application
|
1405
|
+
* will initially wait up to 10 seconds for an initial activation
|
1406
|
+
* message to arrive.
|
1407
|
+
* @G_APPLICATION_IS_LAUNCHER: Don't try to become the primary instance.
|
1408
|
+
* @G_APPLICATION_HANDLES_OPEN: This application handles opening files (in
|
1409
|
+
* the primary instance). Note that this flag only affects the default
|
1410
|
+
* implementation of local_command_line(), and has no effect if
|
1411
|
+
* %G_APPLICATION_HANDLES_COMMAND_LINE is given.
|
1412
|
+
* See g_application_run() for details.
|
1413
|
+
* @G_APPLICATION_HANDLES_COMMAND_LINE: This application handles command line
|
1414
|
+
* arguments (in the primary instance). Note that this flag only affect
|
1415
|
+
* the default implementation of local_command_line().
|
1416
|
+
* See g_application_run() for details.
|
1417
|
+
* @G_APPLICATION_SEND_ENVIRONMENT: Send the environment of the
|
1418
|
+
* launching process to the primary instance. Set this flag if your
|
1419
|
+
* application is expected to behave differently depending on certain
|
1420
|
+
* environment variables. For instance, an editor might be expected
|
1421
|
+
* to use the <envar>GIT_COMMITTER_NAME</envar> environment variable
|
1422
|
+
* when editing a git commit message. The environment is available
|
1423
|
+
* to the #GApplication::command-line signal handler, via
|
1424
|
+
* g_application_command_line_getenv().
|
1425
|
+
* @G_APPLICATION_NON_UNIQUE: Make no attempts to do any of the typical
|
1426
|
+
* single-instance application negotiation, even if the application
|
1427
|
+
* ID is given. The application neither attempts to become the
|
1428
|
+
* owner of the application ID nor does it check if an existing
|
1429
|
+
* owner already exists. Everything occurs in the local process.
|
1430
|
+
* Since: 2.30.
|
1431
|
+
*
|
1432
|
+
* Flags used to define the behaviour of a #GApplication.
|
1433
|
+
*
|
1434
|
+
* Since: 2.28
|
1435
|
+
**/
|
1436
|
+
typedef enum
|
1437
|
+
{
|
1438
|
+
G_APPLICATION_FLAGS_NONE,
|
1439
|
+
G_APPLICATION_IS_SERVICE = (1 << 0),
|
1440
|
+
G_APPLICATION_IS_LAUNCHER = (1 << 1),
|
1441
|
+
|
1442
|
+
G_APPLICATION_HANDLES_OPEN = (1 << 2),
|
1443
|
+
G_APPLICATION_HANDLES_COMMAND_LINE = (1 << 3),
|
1444
|
+
G_APPLICATION_SEND_ENVIRONMENT = (1 << 4),
|
1445
|
+
|
1446
|
+
G_APPLICATION_NON_UNIQUE = (1 << 5)
|
1447
|
+
} GApplicationFlags;
|
1448
|
+
|
1449
|
+
/**
|
1450
|
+
* GTlsError:
|
1451
|
+
* @G_TLS_ERROR_UNAVAILABLE: No TLS provider is available
|
1452
|
+
* @G_TLS_ERROR_MISC: Miscellaneous TLS error
|
1453
|
+
* @G_TLS_ERROR_BAD_CERTIFICATE: A certificate could not be parsed
|
1454
|
+
* @G_TLS_ERROR_NOT_TLS: The TLS handshake failed because the
|
1455
|
+
* peer does not seem to be a TLS server.
|
1456
|
+
* @G_TLS_ERROR_HANDSHAKE: The TLS handshake failed because the
|
1457
|
+
* peer's certificate was not acceptable.
|
1458
|
+
* @G_TLS_ERROR_CERTIFICATE_REQUIRED: The TLS handshake failed because
|
1459
|
+
* the server requested a client-side certificate, but none was
|
1460
|
+
* provided. See g_tls_connection_set_certificate().
|
1461
|
+
* @G_TLS_ERROR_EOF: The TLS connection was closed without proper
|
1462
|
+
* notice, which may indicate an attack. See
|
1463
|
+
* g_tls_connection_set_require_close_notify().
|
1464
|
+
*
|
1465
|
+
* An error code used with %G_TLS_ERROR in a #GError returned from a
|
1466
|
+
* TLS-related routine.
|
1467
|
+
*
|
1468
|
+
* Since: 2.28
|
1469
|
+
*/
|
1470
|
+
typedef enum {
|
1471
|
+
G_TLS_ERROR_UNAVAILABLE,
|
1472
|
+
G_TLS_ERROR_MISC,
|
1473
|
+
G_TLS_ERROR_BAD_CERTIFICATE,
|
1474
|
+
G_TLS_ERROR_NOT_TLS,
|
1475
|
+
G_TLS_ERROR_HANDSHAKE,
|
1476
|
+
G_TLS_ERROR_CERTIFICATE_REQUIRED,
|
1477
|
+
G_TLS_ERROR_EOF
|
1478
|
+
} GTlsError;
|
1479
|
+
|
1480
|
+
/**
|
1481
|
+
* GTlsCertificateFlags:
|
1482
|
+
* @G_TLS_CERTIFICATE_UNKNOWN_CA: The signing certificate authority is
|
1483
|
+
* not known.
|
1484
|
+
* @G_TLS_CERTIFICATE_BAD_IDENTITY: The certificate does not match the
|
1485
|
+
* expected identity of the site that it was retrieved from.
|
1486
|
+
* @G_TLS_CERTIFICATE_NOT_ACTIVATED: The certificate's activation time
|
1487
|
+
* is still in the future
|
1488
|
+
* @G_TLS_CERTIFICATE_EXPIRED: The certificate has expired
|
1489
|
+
* @G_TLS_CERTIFICATE_REVOKED: The certificate has been revoked
|
1490
|
+
* according to the #GTlsConnection's certificate revocation list.
|
1491
|
+
* @G_TLS_CERTIFICATE_INSECURE: The certificate's algorithm is
|
1492
|
+
* considered insecure.
|
1493
|
+
* @G_TLS_CERTIFICATE_GENERIC_ERROR: Some other error occurred validating
|
1494
|
+
* the certificate
|
1495
|
+
* @G_TLS_CERTIFICATE_VALIDATE_ALL: the combination of all of the above
|
1496
|
+
* flags
|
1497
|
+
*
|
1498
|
+
* A set of flags describing TLS certification validation. This can be
|
1499
|
+
* used to set which validation steps to perform (eg, with
|
1500
|
+
* g_tls_client_connection_set_validation_flags()), or to describe why
|
1501
|
+
* a particular certificate was rejected (eg, in
|
1502
|
+
* #GTlsConnection::accept-certificate).
|
1503
|
+
*
|
1504
|
+
* Since: 2.28
|
1505
|
+
*/
|
1506
|
+
typedef enum {
|
1507
|
+
G_TLS_CERTIFICATE_UNKNOWN_CA = (1 << 0),
|
1508
|
+
G_TLS_CERTIFICATE_BAD_IDENTITY = (1 << 1),
|
1509
|
+
G_TLS_CERTIFICATE_NOT_ACTIVATED = (1 << 2),
|
1510
|
+
G_TLS_CERTIFICATE_EXPIRED = (1 << 3),
|
1511
|
+
G_TLS_CERTIFICATE_REVOKED = (1 << 4),
|
1512
|
+
G_TLS_CERTIFICATE_INSECURE = (1 << 5),
|
1513
|
+
G_TLS_CERTIFICATE_GENERIC_ERROR = (1 << 6),
|
1514
|
+
|
1515
|
+
G_TLS_CERTIFICATE_VALIDATE_ALL = 0x007f
|
1516
|
+
} GTlsCertificateFlags;
|
1517
|
+
|
1518
|
+
/**
|
1519
|
+
* GTlsAuthenticationMode:
|
1520
|
+
* @G_TLS_AUTHENTICATION_NONE: client authentication not required
|
1521
|
+
* @G_TLS_AUTHENTICATION_REQUESTED: client authentication is requested
|
1522
|
+
* @G_TLS_AUTHENTICATION_REQUIRED: client authentication is required
|
1523
|
+
*
|
1524
|
+
* The client authentication mode for a #GTlsServerConnection.
|
1525
|
+
*
|
1526
|
+
* Since: 2.28
|
1527
|
+
*/
|
1528
|
+
typedef enum {
|
1529
|
+
G_TLS_AUTHENTICATION_NONE,
|
1530
|
+
G_TLS_AUTHENTICATION_REQUESTED,
|
1531
|
+
G_TLS_AUTHENTICATION_REQUIRED
|
1532
|
+
} GTlsAuthenticationMode;
|
1533
|
+
|
1534
|
+
/**
|
1535
|
+
* GTlsRehandshakeMode:
|
1536
|
+
* @G_TLS_REHANDSHAKE_NEVER: Never allow rehandshaking
|
1537
|
+
* @G_TLS_REHANDSHAKE_SAFELY: Allow safe rehandshaking only
|
1538
|
+
* @G_TLS_REHANDSHAKE_UNSAFELY: Allow unsafe rehandshaking
|
1539
|
+
*
|
1540
|
+
* When to allow rehandshaking. See
|
1541
|
+
* g_tls_connection_set_rehandshake_mode().
|
1542
|
+
*
|
1543
|
+
* Since: 2.28
|
1544
|
+
*/
|
1545
|
+
typedef enum {
|
1546
|
+
G_TLS_REHANDSHAKE_NEVER,
|
1547
|
+
G_TLS_REHANDSHAKE_SAFELY,
|
1548
|
+
G_TLS_REHANDSHAKE_UNSAFELY
|
1549
|
+
} GTlsRehandshakeMode;
|
1550
|
+
|
1551
|
+
/**
|
1552
|
+
* GTlsPasswordFlags:
|
1553
|
+
* @G_TLS_PASSWORD_NONE: No flags
|
1554
|
+
* @G_TLS_PASSWORD_RETRY: The password was wrong, and the user should retry.
|
1555
|
+
* @G_TLS_PASSWORD_MANY_TRIES: Hint to the user that the password has been
|
1556
|
+
* wrong many times, and the user may not have many chances left.
|
1557
|
+
* @G_TLS_PASSWORD_FINAL_TRY: Hint to the user that this is the last try to get
|
1558
|
+
* this password right.
|
1559
|
+
*
|
1560
|
+
* Various flags for the password.
|
1561
|
+
*
|
1562
|
+
* Since: 2.30
|
1563
|
+
*/
|
1564
|
+
|
1565
|
+
typedef enum _GTlsPasswordFlags
|
1566
|
+
{
|
1567
|
+
G_TLS_PASSWORD_NONE = 0,
|
1568
|
+
G_TLS_PASSWORD_RETRY = 1 << 1,
|
1569
|
+
G_TLS_PASSWORD_MANY_TRIES = 1 << 2,
|
1570
|
+
G_TLS_PASSWORD_FINAL_TRY = 1 << 3
|
1571
|
+
} GTlsPasswordFlags;
|
1572
|
+
|
1573
|
+
/**
|
1574
|
+
* GTlsInteractionResult:
|
1575
|
+
* @G_TLS_INTERACTION_UNHANDLED: The interaction was unhandled (i.e. not
|
1576
|
+
* implemented).
|
1577
|
+
* @G_TLS_INTERACTION_HANDLED: The interaction completed, and resulting data
|
1578
|
+
* is available.
|
1579
|
+
* @G_TLS_INTERACTION_FAILED: The interaction has failed, or was cancelled.
|
1580
|
+
* and the operation should be aborted.
|
1581
|
+
*
|
1582
|
+
* #GTlsInteractionResult is returned by various functions in #GTlsInteraction
|
1583
|
+
* when finishing an interaction request.
|
1584
|
+
*
|
1585
|
+
* Since: 2.30
|
1586
|
+
*/
|
1587
|
+
typedef enum {
|
1588
|
+
G_TLS_INTERACTION_UNHANDLED,
|
1589
|
+
G_TLS_INTERACTION_HANDLED,
|
1590
|
+
G_TLS_INTERACTION_FAILED
|
1591
|
+
} GTlsInteractionResult;
|
1592
|
+
|
1593
|
+
/**
|
1594
|
+
* GDBusInterfaceSkeletonFlags:
|
1595
|
+
* @G_DBUS_INTERFACE_SKELETON_FLAGS_NONE: No flags set.
|
1596
|
+
* @G_DBUS_INTERFACE_SKELETON_FLAGS_HANDLE_METHOD_INVOCATIONS_IN_THREAD: Each method invocation is handled in
|
1597
|
+
* a thread dedicated to the invocation. This means that the method implementation can use blocking IO
|
1598
|
+
* without blocking any other part of the process. It also means that the method implementation must
|
1599
|
+
* use locking to access data structures used by other threads.
|
1600
|
+
*
|
1601
|
+
* Flags describing the behavior of a #GDBusInterfaceSkeleton instance.
|
1602
|
+
*
|
1603
|
+
* Since: 2.30
|
1604
|
+
*/
|
1605
|
+
typedef enum
|
1606
|
+
{
|
1607
|
+
G_DBUS_INTERFACE_SKELETON_FLAGS_NONE = 0,
|
1608
|
+
G_DBUS_INTERFACE_SKELETON_FLAGS_HANDLE_METHOD_INVOCATIONS_IN_THREAD = (1<<0)
|
1609
|
+
} GDBusInterfaceSkeletonFlags;
|
1610
|
+
|
1611
|
+
/**
|
1612
|
+
* GDBusObjectManagerClientFlags:
|
1613
|
+
* @G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE: No flags set.
|
1614
|
+
* @G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_DO_NOT_AUTO_START: If not set and the
|
1615
|
+
* manager is for a well-known name, then request the bus to launch
|
1616
|
+
* an owner for the name if no-one owns the name. This flag can only
|
1617
|
+
* be used in managers for well-known names.
|
1618
|
+
*
|
1619
|
+
* Flags used when constructing a #GDBusObjectManagerClient.
|
1620
|
+
*
|
1621
|
+
* Since: 2.30
|
1622
|
+
*/
|
1623
|
+
typedef enum
|
1624
|
+
{
|
1625
|
+
G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_NONE = 0,
|
1626
|
+
G_DBUS_OBJECT_MANAGER_CLIENT_FLAGS_DO_NOT_AUTO_START = (1<<0)
|
1627
|
+
} GDBusObjectManagerClientFlags;
|
1628
|
+
|
1629
|
+
/**
|
1630
|
+
* GTlsDatabaseVerifyFlags:
|
1631
|
+
* @G_TLS_DATABASE_VERIFY_NONE: No verification flags
|
1632
|
+
*
|
1633
|
+
* Flags for g_tls_database_verify_chain().
|
1634
|
+
*
|
1635
|
+
* Since: 2.30
|
1636
|
+
*/
|
1637
|
+
typedef enum /*< flags >*/ {
|
1638
|
+
G_TLS_DATABASE_VERIFY_NONE = 0
|
1639
|
+
} GTlsDatabaseVerifyFlags;
|
1640
|
+
|
1641
|
+
/**
|
1642
|
+
* GTlsDatabaseLookupFlags:
|
1643
|
+
* @G_TLS_DATABASE_LOOKUP_NONE: No lookup flags
|
1644
|
+
* @G_TLS_DATABASE_LOOKUP_KEYPAIR: Restrict lookup to certificates that have
|
1645
|
+
* a private key.
|
1646
|
+
*
|
1647
|
+
* Flags for g_tls_database_lookup_certificate_handle(),
|
1648
|
+
* g_tls_database_lookup_certificate_issuer(),
|
1649
|
+
* and g_tls_database_lookup_certificates_issued_by().
|
1650
|
+
*
|
1651
|
+
* Since: 2.30
|
1652
|
+
*/
|
1653
|
+
typedef enum {
|
1654
|
+
G_TLS_DATABASE_LOOKUP_NONE = 0,
|
1655
|
+
G_TLS_DATABASE_LOOKUP_KEYPAIR = 1
|
1656
|
+
} GTlsDatabaseLookupFlags;
|
1657
|
+
|
1658
|
+
/**
|
1659
|
+
* GTlsCertificateRequestFlags:
|
1660
|
+
* @G_TLS_CERTIFICATE_REQUEST_NONE: No flags
|
1661
|
+
*
|
1662
|
+
* Flags for g_tls_interaction_request_certificate(),
|
1663
|
+
* g_tls_interaction_request_certificate_async(), and
|
1664
|
+
* g_tls_interaction_invoke_request_certificate().
|
1665
|
+
*
|
1666
|
+
* Since: 2.40
|
1667
|
+
*/
|
1668
|
+
typedef enum {
|
1669
|
+
G_TLS_CERTIFICATE_REQUEST_NONE = 0
|
1670
|
+
} GTlsCertificateRequestFlags;
|
1671
|
+
|
1672
|
+
/**
|
1673
|
+
* GIOModuleScopeFlags:
|
1674
|
+
* @G_IO_MODULE_SCOPE_NONE: No module scan flags
|
1675
|
+
* @G_IO_MODULE_SCOPE_BLOCK_DUPLICATES: When using this scope to load or
|
1676
|
+
* scan modules, automatically block a modules which has the same base
|
1677
|
+
* basename as previously loaded module.
|
1678
|
+
*
|
1679
|
+
* Flags for use with g_io_module_scope_new().
|
1680
|
+
*
|
1681
|
+
* Since: 2.30
|
1682
|
+
*/
|
1683
|
+
typedef enum {
|
1684
|
+
G_IO_MODULE_SCOPE_NONE,
|
1685
|
+
G_IO_MODULE_SCOPE_BLOCK_DUPLICATES
|
1686
|
+
} GIOModuleScopeFlags;
|
1687
|
+
|
1688
|
+
/**
|
1689
|
+
* GSocketClientEvent:
|
1690
|
+
* @G_SOCKET_CLIENT_RESOLVING: The client is doing a DNS lookup.
|
1691
|
+
* @G_SOCKET_CLIENT_RESOLVED: The client has completed a DNS lookup.
|
1692
|
+
* @G_SOCKET_CLIENT_CONNECTING: The client is connecting to a remote
|
1693
|
+
* host (either a proxy or the destination server).
|
1694
|
+
* @G_SOCKET_CLIENT_CONNECTED: The client has connected to a remote
|
1695
|
+
* host.
|
1696
|
+
* @G_SOCKET_CLIENT_PROXY_NEGOTIATING: The client is negotiating
|
1697
|
+
* with a proxy to connect to the destination server.
|
1698
|
+
* @G_SOCKET_CLIENT_PROXY_NEGOTIATED: The client has negotiated
|
1699
|
+
* with the proxy server.
|
1700
|
+
* @G_SOCKET_CLIENT_TLS_HANDSHAKING: The client is performing a
|
1701
|
+
* TLS handshake.
|
1702
|
+
* @G_SOCKET_CLIENT_TLS_HANDSHAKED: The client has performed a
|
1703
|
+
* TLS handshake.
|
1704
|
+
* @G_SOCKET_CLIENT_COMPLETE: The client is done with a particular
|
1705
|
+
* #GSocketConnectable.
|
1706
|
+
*
|
1707
|
+
* Describes an event occurring on a #GSocketClient. See the
|
1708
|
+
* #GSocketClient::event signal for more details.
|
1709
|
+
*
|
1710
|
+
* Additional values may be added to this type in the future.
|
1711
|
+
*
|
1712
|
+
* Since: 2.32
|
1713
|
+
*/
|
1714
|
+
typedef enum {
|
1715
|
+
G_SOCKET_CLIENT_RESOLVING,
|
1716
|
+
G_SOCKET_CLIENT_RESOLVED,
|
1717
|
+
G_SOCKET_CLIENT_CONNECTING,
|
1718
|
+
G_SOCKET_CLIENT_CONNECTED,
|
1719
|
+
G_SOCKET_CLIENT_PROXY_NEGOTIATING,
|
1720
|
+
G_SOCKET_CLIENT_PROXY_NEGOTIATED,
|
1721
|
+
G_SOCKET_CLIENT_TLS_HANDSHAKING,
|
1722
|
+
G_SOCKET_CLIENT_TLS_HANDSHAKED,
|
1723
|
+
G_SOCKET_CLIENT_COMPLETE
|
1724
|
+
} GSocketClientEvent;
|
1725
|
+
|
1726
|
+
/**
|
1727
|
+
* GTestDBusFlags:
|
1728
|
+
* @G_TEST_DBUS_NONE: No flags.
|
1729
|
+
*
|
1730
|
+
* Flags to define future #GTestDBus behaviour.
|
1731
|
+
*
|
1732
|
+
* Since: 2.34
|
1733
|
+
*/
|
1734
|
+
typedef enum /*< flags >*/ {
|
1735
|
+
G_TEST_DBUS_NONE = 0
|
1736
|
+
} GTestDBusFlags;
|
1737
|
+
|
1738
|
+
/**
|
1739
|
+
* GSubprocessFlags:
|
1740
|
+
* @G_SUBPROCESS_FLAGS_NONE: No flags.
|
1741
|
+
* @G_SUBPROCESS_FLAGS_STDIN_PIPE: create a pipe for the stdin of the
|
1742
|
+
* spawned process that can be accessed with
|
1743
|
+
* g_subprocess_get_stdin_pipe().
|
1744
|
+
* @G_SUBPROCESS_FLAGS_STDIN_INHERIT: stdin is inherited from the
|
1745
|
+
* calling process.
|
1746
|
+
* @G_SUBPROCESS_FLAGS_STDOUT_PIPE: create a pipe for the stdout of the
|
1747
|
+
* spawned process that can be accessed with
|
1748
|
+
* g_subprocess_get_stdout_pipe().
|
1749
|
+
* @G_SUBPROCESS_FLAGS_STDOUT_SILENCE: silence the stdout of the spawned
|
1750
|
+
* process (ie: redirect to /dev/null).
|
1751
|
+
* @G_SUBPROCESS_FLAGS_STDERR_PIPE: create a pipe for the stderr of the
|
1752
|
+
* spawned process that can be accessed with
|
1753
|
+
* g_subprocess_get_stderr_pipe().
|
1754
|
+
* @G_SUBPROCESS_FLAGS_STDERR_SILENCE: silence the stderr of the spawned
|
1755
|
+
* process (ie: redirect to /dev/null).
|
1756
|
+
* @G_SUBPROCESS_FLAGS_STDERR_MERGE: merge the stderr of the spawned
|
1757
|
+
* process with whatever the stdout happens to be. This is a good way
|
1758
|
+
* of directing both streams to a common log file, for example.
|
1759
|
+
* @G_SUBPROCESS_FLAGS_INHERIT_FDS: spawned processes will inherit the
|
1760
|
+
* file descriptors of their parent, unless those descriptors have
|
1761
|
+
* been explicitly marked as close-on-exec. This flag has no effect
|
1762
|
+
* over the "standard" file descriptors (stdin, stdout, stderr).
|
1763
|
+
*
|
1764
|
+
* Flags to define the behaviour of a #GSubprocess.
|
1765
|
+
*
|
1766
|
+
* Note that the default for stdin is to redirect from /dev/null. For
|
1767
|
+
* stdout and stderr the default are for them to inherit the
|
1768
|
+
* corresponding descriptor from the calling process.
|
1769
|
+
*
|
1770
|
+
* Note that it is a programmer error to mix 'incompatible' flags. For
|
1771
|
+
* example, you may not request both %G_SUBPROCESS_FLAGS_STDOUT_PIPE and
|
1772
|
+
* %G_SUBPROCESS_FLAGS_STDOUT_SILENCE.
|
1773
|
+
*
|
1774
|
+
* Since: 2.40
|
1775
|
+
**/
|
1776
|
+
typedef enum {
|
1777
|
+
G_SUBPROCESS_FLAGS_NONE = 0,
|
1778
|
+
G_SUBPROCESS_FLAGS_STDIN_PIPE = (1u << 0),
|
1779
|
+
G_SUBPROCESS_FLAGS_STDIN_INHERIT = (1u << 1),
|
1780
|
+
G_SUBPROCESS_FLAGS_STDOUT_PIPE = (1u << 2),
|
1781
|
+
G_SUBPROCESS_FLAGS_STDOUT_SILENCE = (1u << 3),
|
1782
|
+
G_SUBPROCESS_FLAGS_STDERR_PIPE = (1u << 4),
|
1783
|
+
G_SUBPROCESS_FLAGS_STDERR_SILENCE = (1u << 5),
|
1784
|
+
G_SUBPROCESS_FLAGS_STDERR_MERGE = (1u << 6),
|
1785
|
+
G_SUBPROCESS_FLAGS_INHERIT_FDS = (1u << 7)
|
1786
|
+
} GSubprocessFlags;
|
1787
|
+
|
1788
|
+
/**
|
1789
|
+
* GNotificationPriority:
|
1790
|
+
* @G_NOTIFICATION_PRIORITY_LOW: for notifications that do not require
|
1791
|
+
* immediate attention - typically used for contextual background
|
1792
|
+
* information, such as contact birthdays or local weather
|
1793
|
+
* @G_NOTIFICATION_PRIORITY_NORMAL: the default priority, to be used for the
|
1794
|
+
* majority of notifications (for example email messages, software updates,
|
1795
|
+
* completed download/sync operations)
|
1796
|
+
* @G_NOTIFICATION_PRIORITY_HIGH: for events that require more attention,
|
1797
|
+
* usually because responses are time-sensitive (for example chat and SMS
|
1798
|
+
* messages or alarms)
|
1799
|
+
* @G_NOTIFICATION_PRIORITY_URGENT: for urgent notifications, or notifications
|
1800
|
+
* that require a response in a short space of time (for example phone calls
|
1801
|
+
* or emergency warnings)
|
1802
|
+
*
|
1803
|
+
* Priority levels for #GNotifications.
|
1804
|
+
*
|
1805
|
+
* Since: 2.42
|
1806
|
+
*/
|
1807
|
+
typedef enum {
|
1808
|
+
G_NOTIFICATION_PRIORITY_NORMAL,
|
1809
|
+
G_NOTIFICATION_PRIORITY_LOW,
|
1810
|
+
G_NOTIFICATION_PRIORITY_HIGH,
|
1811
|
+
G_NOTIFICATION_PRIORITY_URGENT
|
1812
|
+
} GNotificationPriority;
|
1813
|
+
|
1814
|
+
G_END_DECLS
|
1815
|
+
|
1816
|
+
#endif /* __GIO_ENUMS_H__ */
|