From: Victor Seva Date: Mon, 4 Nov 2024 11:25:02 +0000 (+0100) Subject: Import nats.c_3.9.1-1.debian.tar.xz X-Git-Tag: archive/raspbian/3.9.1-1+rpi1^2~1^2 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8b81280905264fc03e2076ed5d5615e521d8704e;p=nats.c.git Import nats.c_3.9.1-1.debian.tar.xz [dgit import tarball nats.c 3.9.1-1 nats.c_3.9.1-1.debian.tar.xz] --- 8b81280905264fc03e2076ed5d5615e521d8704e diff --git a/changelog b/changelog new file mode 100644 index 0000000..31655f6 --- /dev/null +++ b/changelog @@ -0,0 +1,121 @@ +nats.c (3.9.1-1) unstable; urgency=medium + + * New upstream version 3.9.1 + * symbols: add new symbols + + -- Victor Seva Mon, 04 Nov 2024 12:25:02 +0100 + +nats.c (3.9.0-1) unstable; urgency=medium + + * New upstream version 3.9.0 + * libnats3.9 + + -- Victor Seva Mon, 04 Nov 2024 12:06:42 +0100 + +nats.c (3.8.3-1) unstable; urgency=medium + + * New upstream version 3.8.3 + + -- Victor Seva Mon, 04 Nov 2024 12:03:31 +0100 + +nats.c (3.8.2-1) unstable; urgency=medium + + * New upstream version 3.8.2 + * symbols: update removed symbols + + -- Victor Seva Mon, 04 Nov 2024 11:58:08 +0100 + +nats.c (3.8.0-1) unstable; urgency=medium + + * add static libs to dev-packet (Closes: #1060669) + * New upstream version 3.8.0 + * libnats3.8 + + -- Victor Seva Mon, 04 Nov 2024 11:46:45 +0100 + +nats.c (3.7.0-1) unstable; urgency=medium + + [ Debian Janitor ] + * Remove constraints unnecessary since buster (oldstable) + + [ Victor Seva ] + * New upstream version 3.7.0 + * NATS_BUILD_TLS_USE_OPENSSL_1_1_API is enabled by default in since v3.6.0 + * add NATS_BUILD_USE_SODIUM + * rename lib version + * update symbols + * replicate upstream path for missing-sources files + * wrap-and-sort -sat + + -- Victor Seva Wed, 25 Oct 2023 12:42:54 +0200 + +nats.c (3.5.0-1) experimental; urgency=medium + + [ Debian Janitor ] + * Bump debhelper from old 12 to 13. + * Set upstream metadata fields: Bug-Database, Bug-Submit, Repository, Repository-Browse. + * Avoid explicitly specifying -Wl,--as-needed linker flag. + + [ Victor Seva ] + * New upstream version 3.5.0 + * update standards-version to 4.6.2, no changes needed + * libnats3.5 + + -- Victor Seva Fri, 27 Jan 2023 10:59:55 +0100 + +nats.c (3.4.1-1) unstable; urgency=medium + + * New upstream version 3.4.1 + * update symbols + + -- Victor Seva Wed, 26 Oct 2022 00:37:32 +0200 + +nats.c (3.4.0-1) unstable; urgency=medium + + * New upstream version 3.4.0 + * remove already applied patches + * libnats3.4 + + -- Victor Seva Mon, 03 Oct 2022 10:13:28 +0200 + +nats.c (3.3.0-4) unstable; urgency=medium + + * rules: fix configure + + -- Victor Seva Thu, 14 Jul 2022 02:19:49 +0200 + +nats.c (3.3.0-3) unstable; urgency=medium + + * configure to build using openssl 1.1 + * upstream's fix for build warning + + -- Victor Seva Wed, 13 Jul 2022 20:08:41 +0200 + +nats.c (3.3.0-2) unstable; urgency=medium + + * fix armel build + * update Standards-Version, no changes needed + + -- Victor Seva Tue, 12 Jul 2022 12:58:44 +0200 + +nats.c (3.3.0-1) unstable; urgency=medium + + * New upstream version 3.3.0 + * remove already applied patches + + -- Victor Seva Mon, 02 May 2022 14:17:51 +0200 + +nats.c (3.2.0-1) unstable; urgency=medium + + * debian/gbp.conf + * New upstream version 3.2.0 + * new soname, update year in copyright, update Standards-Version + * cmake files path patch + + -- Victor Seva Wed, 16 Feb 2022 11:08:25 +0100 + +nats.c (2.5.1-1) unstable; urgency=medium + + * Initial release (Closes: #991376) + + -- Victor Seva Sat, 26 Jun 2021 12:24:54 +0200 diff --git a/control b/control new file mode 100644 index 0000000..b46b7a3 --- /dev/null +++ b/control @@ -0,0 +1,47 @@ +Source: nats.c +Priority: optional +Maintainer: Victor Seva +Build-Depends: + cmake, + debhelper-compat (= 13), + libprotobuf-c-dev, + libsodium-dev, + libssl-dev, +Standards-Version: 4.6.2 +Section: libs +Homepage: https://github.com/nats-io/nats.c/ +Vcs-Browser: https://salsa.debian.org/debian/nats.c +Vcs-Git: https://salsa.debian.org/debian/nats.c.git + +Package: libnats-dev +Section: libdevel +Architecture: any +Multi-Arch: same +Depends: + libnats3.9 (= ${binary:Version}), + ${misc:Depends}, +Description: C client for the NATS messaging system (development files) + NATS messaging enables the exchange of data that is segmented into messages + among computer applications and services. These messages are addressed by + subjects and do not depend on network location. This provides an abstraction + layer between the application or service and the underlying physical network. + Data is encoded and framed as a message and sent by a publisher. + The message is received, decoded, and processed by one or more subscribers. + . + This package provides the C headers for NATS + +Package: libnats3.9 +Architecture: any +Multi-Arch: same +Depends: + ${misc:Depends}, + ${shlibs:Depends}, +Description: C client for the NATS messaging system + NATS messaging enables the exchange of data that is segmented into messages + among computer applications and services. These messages are addressed by + subjects and do not depend on network location. This provides an abstraction + layer between the application or service and the underlying physical network. + Data is encoded and framed as a message and sent by a publisher. + The message is received, decoded, and processed by one or more subscribers. + . + This package provides the C shared libraries for NATS diff --git a/copyright b/copyright new file mode 100644 index 0000000..681b7ee --- /dev/null +++ b/copyright @@ -0,0 +1,114 @@ +Format: https://www.debian.org/doc/packaging-manuals/copyright-format/1.0/ +Upstream-Name: nats.c +Source: https://github.com/nats-io/nats.c + +Files: * +Copyright: 2015-2022 The NATS Authors +License: Apache-2.0 + +Files: doc/html/jquery.js +Copyright: + 2010, "Cowboy" Ben Alman + 2011, John Resig + 2021, OpenJS Foundation and other contributors + 2011, The Dojo Foundation + 2018, Steven Benner + 2016, jQuery Foundation and other contributors + 2014, Dave Furfero + 2017, Vasil Dinkov, Vadikom Web Ltd. +Comment: Includes Sizzle.js http://sizzlejs.com/ + jQuery UI 1.12.1 + PowerTip - v1.3.1 + jQuery UI Touch Punch 0.2.3 + SmartMenus jQuery v1.1.0 +License: MIT or BSD-3-clause or GPL-2 + +Files: debian/* +Copyright: 2021-2022 Victor Seva +License: Apache-2.0 +Comment: Debian packaging is licensed under the same terms as upstream + +License: Apache-2.0 + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + . + http://www.apache.org/licenses/LICENSE-2.0 + . + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. + . + On Debian systems, the complete text of the Apache version 2.0 license + can be found in "/usr/share/common-licenses/Apache-2.0". + +License: GPL-2 + On Debian GNU/Linux systems, + the complete text of the GNU General Public License + can be found in . + +License: MIT + Permission is hereby granted, free of charge, + to any person obtaining a copy + of this software and associated documentation files (the "Software"), + to deal in the Software without restriction, + including without limitation + the rights to use, copy, modify, merge, publish, distribute, + sublicense, and/or sell copies of the Software, + and to permit persons to whom the Software is furnished to do so, + subject to the following conditions: + . + The above copyright notice and this permission notice + shall be included in all copies + or substantial portions of the Software. + . + THE SOFTWARE IS PROVIDED "AS IS", + WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, + INCLUDING BUT NOT LIMITED TO + THE WARRANTIES OF MERCHANTABILITY, + FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. + IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE + FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, + WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE + OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +License: BSD-3-clause + Copyright (c) 2009, John Resig + All rights reserved. + Redistribution and use in source and binary forms, + with or without modification, are permitted + provided that the following conditions are met: + * Redistributions of source code must retain + the above copyright notice, this list of conditions + and the following disclaimer. + * Redistributions in binary form must reproduce + the above copyright notice, this list of conditions + and the following disclaimer + in the documentation and/or other materials + provided with the distribution. + * Neither the name of the + nor the names of its contributors + may be used to endorse or promote products + derived from this software + without specific prior written permission. + . + THIS SOFTWARE IS PROVIDED BY John Resig "AS IS" + AND ANY EXPRESS OR IMPLIED WARRANTIES, + INCLUDING, BUT NOT LIMITED TO, + THE IMPLIED WARRANTIES OF MERCHANTABILITY + AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. + IN NO EVENT SHALL BE LIABLE + FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, + OR CONSEQUENTIAL DAMAGES + (INCLUDING, BUT NOT LIMITED TO, + PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; + LOSS OF USE, DATA, OR PROFITS; + OR BUSINESS INTERRUPTION) + HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, + WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + (INCLUDING NEGLIGENCE OR OTHERWISE) + ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, + EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/gbp.conf b/gbp.conf new file mode 100644 index 0000000..8410ecd --- /dev/null +++ b/gbp.conf @@ -0,0 +1,4 @@ +[DEFAULT] +debian-branch=debian/master +upstream-branch=upstream +pristine-tar=True \ No newline at end of file diff --git a/libnats-dev.dirs b/libnats-dev.dirs new file mode 100644 index 0000000..da07fdd --- /dev/null +++ b/libnats-dev.dirs @@ -0,0 +1,2 @@ +usr/include +usr/lib diff --git a/libnats-dev.install b/libnats-dev.install new file mode 100644 index 0000000..1fa1feb --- /dev/null +++ b/libnats-dev.install @@ -0,0 +1,5 @@ +usr/include/* +usr/lib/*/cmake/cnats +usr/lib/*/lib*.so +usr/lib/*/lib*.a +usr/lib/*/pkgconfig/* diff --git a/libnats3.9.dirs b/libnats3.9.dirs new file mode 100644 index 0000000..6845771 --- /dev/null +++ b/libnats3.9.dirs @@ -0,0 +1 @@ +usr/lib diff --git a/libnats3.9.install b/libnats3.9.install new file mode 100644 index 0000000..3ddde58 --- /dev/null +++ b/libnats3.9.install @@ -0,0 +1 @@ +usr/lib/*/lib*.so.* diff --git a/libnats3.9.symbols b/libnats3.9.symbols new file mode 100644 index 0000000..9cd6ac6 --- /dev/null +++ b/libnats3.9.symbols @@ -0,0 +1,812 @@ +libnats.so.3.9 libnats3.9 #MINVER# +* Build-Depends-Package: libnats-dev + MEMALIGN@Base 2.5.1 + _fetch@Base 3.4.0 + _get@Base 3.3.0 + applyNewSID@Base 3.2.0 + expandBuf@Base 2.5.1 + gLockSpinCount@Base 2.5.1 + jsAccountInfo_Destroy@Base 3.2.0 + jsBase@Base 3.2.0 + jsConsumerConfig_Init@Base 3.2.0 + jsConsumerInfoList_Destroy@Base 3.4.0 + jsConsumerInfo_Destroy@Base 3.2.0 + jsConsumerNamesList_Destroy@Base 3.4.0 + jsConsumerPauseResponse_Destroy@Base 3.9.0 + jsConsumerInfoList_Destroy@Base 3.4.0 + jsCtx_Destroy@Base 3.2.0 + jsDefaultAPIPrefix@Base 3.2.0 + jsDefaultRequestWait@Base 3.2.0 + jsDefaultStallWait@Base 3.2.0 + jsDigits@Base 3.2.0 + jsDirectGetMsgOptions_Init@Base 3.4.0 + jsExternalStream_Init@Base 3.2.0 + jsFetchRequest_Init@Base 3.4.0 + jsConsumerNamesList_Destroy@Base 3.4.0 + jsMsgMetaData_Destroy@Base 3.2.0 + jsOptions_Init@Base 3.2.0 + jsOrderedHBInterval@Base 3.2.0 + jsPlacement_Init@Base 3.2.0 + jsPubAck_Destroy@Base 3.2.0 + jsPubOptions_Init@Base 3.2.0 + jsRePublish_Init@Base 3.4.0 + jsStreamConfig_Init@Base 3.2.0 + jsStreamInfoList_Destroy@Base 3.4.0 + jsStreamInfo_Destroy@Base 3.2.0 + jsStreamNamesList_Destroy@Base 3.4.0 + jsStreamSource_Init@Base 3.2.0 + jsSubOptions_Init@Base 3.2.0 + jsSub_checkForFlowControlResponse@Base 3.2.0 + jsSub_checkOrderedMsg@Base 3.2.0 + jsSub_deleteConsumer@Base 3.2.0 + jsSub_deleteConsumerAfterDrain@Base 3.2.0 + jsSub_free@Base 3.2.0 + jsSub_processSequenceMismatch@Base 3.2.0 + jsSub_resetOrderedConsumer@Base 3.2.0 + jsSub_scheduleFlowControlResponse@Base 3.2.0 + jsSub_trackSequences@Base 3.2.0 + js_AddConsumer@Base 3.2.0 + js_AddStream@Base 3.2.0 + js_ConsumerNames@Base 3.4.0 + js_Consumers@Base 3.4.0 + js_CreateKeyValue@Base 3.2.0 + js_DeleteConsumer@Base 3.2.0 + js_DeleteKeyValue@Base 3.2.0 + js_DeleteMsg@Base 3.2.0 + js_DeleteStream@Base 3.2.0 + js_DirectGetMsg@Base 3.4.0 + js_EraseMsg@Base 3.2.0 + js_GetAccountInfo@Base 3.2.0 + js_GetConsumerInfo@Base 3.2.0 + js_GetLastMsg@Base 3.2.0 + js_GetMsg@Base 3.2.0 + js_GetStreamInfo@Base 3.2.0 + js_KeyValue@Base 3.2.0 + js_PauseConsumer@Base 3.9.0 + js_Publish@Base 3.2.0 + js_PublishAsync@Base 3.2.0 + js_PublishAsyncComplete@Base 3.2.0 + js_PublishAsyncGetPendingList@Base 3.2.0 + js_PublishMsg@Base 3.2.0 + js_PublishMsgAsync@Base 3.2.0 + js_PullSubscribe@Base 3.2.0 + js_PullSubscribeAsync@Base 3.9.0 + js_PurgeStream@Base 3.2.0 + js_StreamNames@Base 3.4.0 + js_Streams@Base 3.4.0 + js_Subscribe@Base 3.2.0 + js_SubscribeMulti@Base 3.9.0 + js_SubscribeSync@Base 3.2.0 + js_SubscribeSyncMulti@Base 3.9.0 + js_UpdateConsumer@Base 3.3.0 + js_UpdateStream@Base 3.2.0 + js_checkConsName@Base 3.4.0 + js_checkFetchedMsg@Base 3.9.0 + js_cleanStreamState@Base 3.2.0 + js_cloneConsumerConfig@Base 3.4.1 + js_destroyConsumerConfig@Base 3.4.1 + js_destroyStreamConfig@Base 3.2.0 + js_directGetMsgToJSMsg@Base 3.4.0 + js_freeApiRespContent@Base 3.2.0 + js_getMetaData@Base 3.2.0 + js_lenWithoutTrailingDot@Base 3.2.0 + js_marshalStreamConfig@Base 3.2.0 + js_maybeFetchMore@Base 3.9.0 + js_release@Base 3.2.0 + js_retain@Base 3.2.0 + js_setOpts@Base 3.2.0 + js_unmarshalAccountInfo@Base 3.2.0 + js_unmarshalConsumerInfo@Base 3.2.0 + js_unmarshalConsumerPauseResp@Base 3.9.0 + js_unmarshalResponse@Base 3.2.0 + js_unmarshalStreamConfig@Base 3.2.0 + js_unmarshalStreamInfo@Base 3.2.0 + js_unmarshalStreamState@Base 3.2.0 + jsonMaxNested@Base 3.2.0 + kvConfig_Init@Base 3.2.0 + kvEntryList_Destroy@Base 3.2.0 + kvEntry_Bucket@Base 3.2.0 + kvEntry_Created@Base 3.2.0 + kvEntry_Delta@Base 3.2.0 + kvEntry_Destroy@Base 3.2.0 + kvEntry_Key@Base 3.2.0 + kvEntry_Operation@Base 3.2.0 + kvEntry_Revision@Base 3.2.0 + kvEntry_Value@Base 3.2.0 + kvEntry_ValueLen@Base 3.2.0 + kvEntry_ValueString@Base 3.2.0 + kvKeysList_Destroy@Base 3.2.0 + kvPurgeOptions_Init@Base 3.3.0 + kvStatus_Bucket@Base 3.2.0 + kvStatus_Bytes@Base 3.5.0 + kvStatus_Destroy@Base 3.2.0 + kvStatus_History@Base 3.2.0 + kvStatus_Replicas@Base 3.2.0 + kvStatus_TTL@Base 3.2.0 + kvStatus_Values@Base 3.2.0 + kvStore_Bucket@Base 3.2.0 + kvStore_Create@Base 3.2.0 + kvStore_CreateString@Base 3.2.0 + kvStore_Delete@Base 3.2.0 + kvStore_Destroy@Base 3.2.0 + kvStore_Get@Base 3.2.0 + kvStore_GetRevision@Base 3.3.0 + kvStore_History@Base 3.2.0 + kvStore_Keys@Base 3.2.0 + kvStore_KeysWithFilters@Base 3.9.0 + kvStore_Purge@Base 3.2.0 + kvStore_PurgeDeletes@Base 3.2.0 + kvStore_Put@Base 3.2.0 + kvStore_PutString@Base 3.2.0 + kvStore_Status@Base 3.2.0 + kvStore_Update@Base 3.2.0 + kvStore_UpdateString@Base 3.2.0 + kvStore_Watch@Base 3.2.0 + kvStore_WatchAll@Base 3.2.0 + kvStore_WatchMulti@Base 3.9.0 + kvWatchOptions_Init@Base 3.2.0 + kvWatcher_Destroy@Base 3.2.0 + kvWatcher_Next@Base 3.2.0 + kvWatcher_Stop@Base 3.2.0 + microClient_Destroy@Base 3.7.0 + microClient_DoRequest@Base 3.7.0 + microError_Destroy@Base 3.7.0 + microError_Status@Base 3.7.0 + microError_String@Base 3.7.0 + microError_Wrapf@Base 3.7.0 + microGroup_AddEndpoint@Base 3.7.0 + microGroup_AddGroup@Base 3.7.0 + microRequest_AddHeader@Base 3.7.0 + microRequest_DeleteHeader@Base 3.7.0 + microRequest_GetConnection@Base 3.7.0 + microRequest_GetData@Base 3.7.0 + microRequest_GetDataLength@Base 3.7.0 + microRequest_GetEndpoint@Base 3.7.0 + microRequest_GetEndpointState@Base 3.7.0 + microRequest_GetHeaderKeys@Base 3.7.0 + microRequest_GetHeaderValue@Base 3.7.0 + microRequest_GetHeaderValues@Base 3.7.0 + microRequest_GetMsg@Base 3.7.0 + microRequest_GetReply@Base 3.7.0 + microRequest_GetService@Base 3.7.0 + microRequest_GetServiceState@Base 3.7.0 + microRequest_GetSubject@Base 3.7.0 + microRequest_Respond@Base 3.7.0 + microRequest_RespondCustom@Base 3.7.0 + microRequest_RespondError@Base 3.7.0 + microRequest_SetHeader@Base 3.7.0 + microServiceInfo_Destroy@Base 3.7.0 + microServiceStats_Destroy@Base 3.7.0 + microService_AddEndpoint@Base 3.7.0 + microService_AddGroup@Base 3.7.0 + microService_Destroy@Base 3.7.0 + microService_GetConnection@Base 3.7.0 + microService_GetInfo@Base 3.7.0 + microService_GetState@Base 3.7.0 + microService_GetStats@Base 3.7.0 + microService_IsStopped@Base 3.7.0 + microService_Run@Base 3.7.0 + microService_Stop@Base 3.7.0 + micro_AddService@Base 3.7.0 + micro_ErrorFromStatus@Base 3.7.0 + micro_ErrorInvalidArg@Base 3.7.0 + micro_ErrorOutOfMemory@Base 3.7.0 + micro_Errorf@Base 3.7.0 + micro_ErrorfCode@Base 3.7.0 + micro_NewClient@Base 3.7.0 + micro_add_endpoint@Base 3.7.0 + micro_clone_endpoint_config@Base 3.7.0 + micro_free_cloned_endpoint_config@Base 3.7.0 + micro_free_endpoint@Base 3.7.0 + micro_free_request@Base 3.7.0 + micro_init_monitoring@Base 3.7.0 + micro_is_error_message@Base 3.7.0 + micro_is_valid_name@Base 3.7.0 + micro_is_valid_subject@Base 3.7.0 + micro_match_endpoint_subject@Base 3.7.0 + micro_new_control_subject@Base 3.7.0 + micro_new_endpoint@Base 3.7.0 + micro_new_request@Base 3.7.0 + micro_queue_group_for_endpoint@Base 3.9.0 + micro_release_endpoint@Base 3.7.0 + micro_release_on_endpoint_complete@Base 3.7.0 + micro_retain_endpoint@Base 3.7.0 + micro_start_endpoint@Base 3.7.0 + micro_stop_endpoint@Base 3.7.0 + micro_update_last_error@Base 3.7.0 + natsAsyncCb_Destroy@Base 2.5.1 + natsAsyncCb_PostConnHandler@Base 2.5.1 + natsAsyncCb_PostErrHandler@Base 2.5.1 + natsAsyncCb_PostStanConnLostHandler@Base 2.5.1 + natsBuf_Append@Base 2.5.1 + natsBuf_AppendByte@Base 2.5.1 + natsBuf_Consume@Base 2.5.1 + natsBuf_Create@Base 2.5.1 + natsBuf_CreateWithBackend@Base 2.5.1 + natsBuf_Destroy@Base 2.5.1 + natsBuf_Expand@Base 2.5.1 + natsBuf_Init@Base 2.5.1 + natsBuf_InitWithBackend@Base 2.5.1 + natsBuf_MoveTo@Base 2.5.1 + natsBuf_Reset@Base 2.5.1 + natsCondition_AbsoluteTimedWait@Base 2.5.1 + natsCondition_Broadcast@Base 2.5.1 + natsCondition_Create@Base 2.5.1 + natsCondition_Destroy@Base 2.5.1 + natsCondition_Signal@Base 2.5.1 + natsCondition_TimedWait@Base 2.5.1 + natsCondition_Wait@Base 2.5.1 + natsConn_addRespInfo@Base 2.5.1 + natsConn_addSubcription@Base 2.5.1 + natsConn_bufferFlush@Base 2.5.1 + natsConn_bufferWrite@Base 2.5.1 + natsConn_bufferWriteString@Base 2.5.1 + natsConn_close@Base 2.5.1 + natsConn_create@Base 2.5.1 + natsConn_defaultErrHandler@Base 3.7.0 + natsConn_destroy@Base 2.5.1 + natsConn_destroyRespPool@Base 2.5.1 + natsConn_disposeRespInfo@Base 2.5.1 + natsConn_enqueueUnsubProto@Base 2.5.1 + natsConn_flushOrKickFlusher@Base 2.5.1 + natsConn_initInbox@Base 3.3.0 + natsConn_initResp@Base 2.5.1 + natsConn_isClosed@Base 2.5.1 + natsConn_isDraining@Base 2.5.1 + natsConn_isDrainingPubs@Base 2.5.1 + natsConn_isReconnecting@Base 2.5.1 + natsConn_lockAndRetain@Base 2.5.1 + natsConn_newInbox@Base 3.3.0 + natsConn_processAsyncINFO@Base 2.5.1 + natsConn_processErr@Base 2.5.1 + natsConn_processMsg@Base 2.5.1 + natsConn_processOK@Base 2.5.1 + natsConn_processPing@Base 2.5.1 + natsConn_processPong@Base 2.5.1 + natsConn_publish@Base 2.5.1 + natsConn_release@Base 2.5.1 + natsConn_removeSubscription@Base 2.5.1 + natsConn_retain@Base 2.5.1 + natsConn_sendSubProto@Base 3.2.0 + natsConn_sendUnsubProto@Base 3.2.0 + natsConn_setFilterWithClosure@Base 3.2.0 + natsConn_signatureHandler@Base 2.5.1 + natsConn_srvVersionAtLeast@Base 3.3.0 + natsConn_subscribeImpl@Base 2.5.1 + natsConn_unlockAndRelease@Base 2.5.1 + natsConn_unsubscribe@Base 2.5.1 + natsConn_userCreds@Base 3.7.0 + natsConnection_Buffered@Base 2.5.1 + natsConnection_Close@Base 2.5.1 + natsConnection_Connect@Base 2.5.1 + natsConnection_ConnectTo@Base 2.5.1 + natsConnection_Destroy@Base 2.5.1 + natsConnection_Drain@Base 2.5.1 + natsConnection_DrainTimeout@Base 2.5.1 + natsConnection_Flush@Base 2.5.1 + natsConnection_FlushTimeout@Base 2.5.1 + natsConnection_GetClientID@Base 2.5.1 + natsConnection_GetClientIP@Base 2.5.1 + natsConnection_GetConnectedServerId@Base 2.5.1 + natsConnection_GetConnectedUrl@Base 2.5.1 + natsConnection_GetDiscoveredServers@Base 2.5.1 + natsConnection_GetLastError@Base 2.5.1 + natsConnection_GetLocalIPAndPort@Base 2.5.1 + natsConnection_GetMaxPayload@Base 2.5.1 + natsConnection_GetRTT@Base 2.5.1 + natsConnection_GetServers@Base 2.5.1 + natsConnection_GetStats@Base 2.5.1 + natsConnection_HasHeaderSupport@Base 2.5.1 + natsConnection_IsClosed@Base 2.5.1 + natsConnection_IsDraining@Base 2.5.1 + natsConnection_IsReconnecting@Base 2.5.1 + natsConnection_JetStream@Base 3.2.0 + natsConnection_ProcessReadEvent@Base 2.5.1 + natsConnection_ProcessWriteEvent@Base 2.5.1 + natsConnection_Publish@Base 2.5.1 + natsConnection_PublishMsg@Base 2.5.1 + natsConnection_PublishRequest@Base 2.5.1 + natsConnection_PublishRequestString@Base 2.5.1 + natsConnection_PublishString@Base 2.5.1 + natsConnection_QueueSubscribe@Base 2.5.1 + natsConnection_QueueSubscribeSync@Base 2.5.1 + natsConnection_QueueSubscribeTimeout@Base 2.5.1 + natsConnection_Reconnect@Base 3.9.0 + natsConnection_Request@Base 2.5.1 + natsConnection_RequestMsg@Base 2.5.1 + natsConnection_RequestString@Base 2.5.1 + natsConnection_Sign@Base 2.5.1 + natsConnection_Status@Base 2.5.1 + natsConnection_Subscribe@Base 2.5.1 + natsConnection_SubscribeSync@Base 2.5.1 + natsConnection_SubscribeTimeout@Base 2.5.1 + natsCrypto_Clear@Base 2.5.1 + natsCrypto_Init@Base 2.5.1 + natsCrypto_Sign@Base 2.5.1 + natsDeadline_Clear@Base 2.5.1 + natsDeadline_GetTimeout@Base 2.5.1 + natsDeadline_Init@Base 2.5.1 + natsGC_collect@Base 2.5.1 + natsHashIter_Done@Base 2.5.1 + natsHashIter_Init@Base 2.5.1 + natsHashIter_Next@Base 2.5.1 + natsHashIter_RemoveCurrent@Base 2.5.1 + natsHash_Create@Base 2.5.1 + natsHash_Destroy@Base 2.5.1 + natsHash_Get@Base 2.5.1 + natsHash_Remove@Base 2.5.1 + natsHash_RemoveSingle@Base 2.5.1 + natsHash_Set@Base 2.5.1 + natsHeaderValue_create@Base 2.5.1 + natsHeaderValue_free@Base 2.5.1 + natsInbox_Create@Base 2.5.1 + natsInbox_Destroy@Base 2.5.1 + natsKeys_Sign@Base 2.5.1 + natsLib_Release@Base 2.5.1 + natsLib_Retain@Base 2.5.1 + natsLib_getAllServicesToCallback@Base 3.7.0 + natsLib_getServiceCallbackMutex@Base 3.7.0 + natsLib_startServiceCallbacks@Base 3.7.0 + natsLib_stopServiceCallbacks@Base 3.7.0 + natsMsgHeader_Add@Base 2.5.1 + natsMsgHeader_Delete@Base 2.5.1 + natsMsgHeader_Get@Base 2.5.1 + natsMsgHeader_Keys@Base 2.5.1 + natsMsgHeader_Set@Base 2.5.1 + natsMsgHeader_Values@Base 2.5.1 + natsMsgHeader_encode@Base 2.5.1 + natsMsgHeader_encodedLen@Base 2.5.1 + natsMsgList_Destroy@Base 3.2.0 + natsMsg_Ack@Base 3.2.0 + natsMsg_AckSync@Base 3.2.0 + natsMsg_Create@Base 2.5.1 + natsMsg_Destroy@Base 2.5.1 + natsMsg_GetData@Base 2.5.1 + natsMsg_GetDataLength@Base 2.5.1 + natsMsg_GetMetaData@Base 3.2.0 + natsMsg_GetReply@Base 2.5.1 + natsMsg_GetSequence@Base 3.2.0 + natsMsg_GetSubject@Base 2.5.1 + natsMsg_GetTime@Base 3.2.0 + natsMsg_InProgress@Base 3.2.0 + natsMsg_IsNoResponders@Base 2.5.1 + natsMsg_Nak@Base 3.2.0 + natsMsg_NakWithDelay@Base 3.3.0 + natsMsg_Term@Base 3.2.0 + natsMsg_create@Base 2.5.1 + natsMsg_createWithPadding@Base 3.7.0 + natsMsg_free@Base 2.5.1 + natsMsg_freeHeaders@Base 3.2.0 + natsMsg_init@Base 2.5.1 + natsMsg_isJSCtrl@Base 3.2.0 + natsMutex_Create@Base 2.5.1 + natsMutex_Destroy@Base 2.5.1 + natsMutex_Lock@Base 2.5.1 + natsMutex_TryLock@Base 2.5.1 + natsMutex_Unlock@Base 2.5.1 + natsNUID_Next@Base 2.5.1 + natsNUID_free@Base 2.5.1 + natsNUID_init@Base 2.5.1 + natsOptions_Create@Base 2.5.1 + natsOptions_Destroy@Base 2.5.1 + natsOptions_DisableNoResponders@Base 2.5.1 + natsOptions_IPResolutionOrder@Base 2.5.1 + natsOptions_LoadCATrustedCertificates@Base 2.5.1 + natsOptions_LoadCertificatesChain@Base 2.5.1 + natsOptions_SetAllowReconnect@Base 2.5.1 + natsOptions_SetCATrustedCertificates@Base 2.5.1 + natsOptions_SetCertificatesChain@Base 2.5.1 + natsOptions_SetCipherSuites@Base 2.5.1 + natsOptions_SetCiphers@Base 2.5.1 + natsOptions_SetClosedCB@Base 2.5.1 + natsOptions_SetCustomInboxPrefix@Base 3.3.0 + natsOptions_SetCustomReconnectDelay@Base 2.5.1 + natsOptions_SetDisconnectedCB@Base 2.5.1 + natsOptions_SetDiscoveredServersCB@Base 2.5.1 + natsOptions_SetErrorHandler@Base 2.5.1 + natsOptions_SetEventLoop@Base 2.5.1 + natsOptions_SetExpectedHostname@Base 2.5.1 + natsOptions_SetFailRequestsOnDisconnect@Base 2.5.1 + natsOptions_SetIOBufSize@Base 2.5.1 + natsOptions_SetIgnoreDiscoveredServers@Base 3.4.0 + natsOptions_SetLameDuckModeCB@Base 2.5.1 + natsOptions_SetMaxPendingBytes@Base 3.9.1 + natsOptions_SetMaxPendingMsgs@Base 2.5.1 + natsOptions_SetMaxPingsOut@Base 2.5.1 + natsOptions_SetMaxReconnect@Base 2.5.1 + natsOptions_SetMessageBufferPadding@Base 3.7.0 + natsOptions_SetNKey@Base 2.5.1 + natsOptions_SetNKeyFromSeed@Base 2.5.1 + natsOptions_SetName@Base 2.5.1 + natsOptions_SetNoEcho@Base 2.5.1 + natsOptions_SetNoRandomize@Base 2.5.1 + natsOptions_SetPedantic@Base 2.5.1 + natsOptions_SetPingInterval@Base 2.5.1 + natsOptions_SetReconnectBufSize@Base 2.5.1 + natsOptions_SetReconnectJitter@Base 2.5.1 + natsOptions_SetReconnectWait@Base 2.5.1 + natsOptions_SetReconnectedCB@Base 2.5.1 + natsOptions_SetRetryOnFailedConnect@Base 2.5.1 + natsOptions_SetSecure@Base 2.5.1 + natsOptions_SetSendAsap@Base 2.5.1 + natsOptions_SetServers@Base 2.5.1 + natsOptions_SetTimeout@Base 2.5.1 + natsOptions_SetToken@Base 2.5.1 + natsOptions_SetTokenHandler@Base 2.5.1 + natsOptions_SetURL@Base 2.5.1 + natsOptions_SetUserCredentialsCallbacks@Base 2.5.1 + natsOptions_SetUserCredentialsFromFiles@Base 2.5.1 + natsOptions_SetUserCredentialsFromMemory@Base 3.7.0 + natsOptions_SetUserInfo@Base 2.5.1 + natsOptions_SetVerbose@Base 2.5.1 + natsOptions_SetWriteDeadline@Base 2.5.1 + natsOptions_SkipServerVerification@Base 2.5.1 + natsOptions_TLSHandshakeFirst@Base 3.9.1 + natsOptions_UseGlobalMessageDelivery@Base 2.5.1 + natsOptions_UseOldRequestStyle@Base 2.5.1 + natsOptions_clone@Base 2.5.1 + natsOptions_setMicroCallbacks@Base 3.7.0 + natsPBufAllocator_Create@Base 2.5.1 + natsPBufAllocator_Destroy@Base 2.5.1 + natsPBufAllocator_Prepare@Base 2.5.1 + natsParser_Create@Base 2.5.1 + natsParser_Destroy@Base 2.5.1 + natsParser_Parse@Base 2.5.1 + natsSock_ClearDeadline@Base 2.5.1 + natsSock_Close@Base 2.5.1 + natsSock_ConnectTcp@Base 2.5.1 + natsSock_Flush@Base 2.5.1 + natsSock_GetLocalIPAndPort@Base 2.5.1 + natsSock_Init@Base 2.5.1 + natsSock_InitDeadline@Base 2.5.1 + natsSock_IsConnected@Base 2.5.1 + natsSock_Read@Base 2.5.1 + natsSock_ReadLine@Base 2.5.1 + natsSock_SetBlocking@Base 2.5.1 + natsSock_SetCommonTcpOptions@Base 2.5.1 + natsSock_ShuffleIPs@Base 3.2.0 + natsSock_Shutdown@Base 2.5.1 + natsSock_WaitReady@Base 2.5.1 + natsSock_Write@Base 2.5.1 + natsSock_WriteFully@Base 2.5.1 + natsSrvPool_Create@Base 2.5.1 + natsSrvPool_Destroy@Base 2.5.1 + natsSrvPool_GetCurrentServer@Base 2.5.1 + natsSrvPool_GetNextServer@Base 2.5.1 + natsSrvPool_GetServers@Base 2.5.1 + natsSrvPool_addNewURLs@Base 2.5.1 + natsStatistics_Create@Base 2.5.1 + natsStatistics_Destroy@Base 2.5.1 + natsStatistics_GetCounts@Base 2.5.1 + natsStatus_GetText@Base 2.5.1 + natsStrHashIter_Done@Base 2.5.1 + natsStrHashIter_Init@Base 2.5.1 + natsStrHashIter_Next@Base 2.5.1 + natsStrHashIter_RemoveCurrent@Base 2.5.1 + natsStrHash_Create@Base 2.5.1 + natsStrHash_Destroy@Base 2.5.1 + natsStrHash_GetEx@Base 3.2.0 + natsStrHash_Hash@Base 2.5.1 + natsStrHash_Remove@Base 2.5.1 + natsStrHash_RemoveSingle@Base 2.5.1 + natsStrHash_SetEx@Base 2.5.1 + natsSub_close@Base 2.5.1 + natsSub_create@Base 2.5.1 + natsSub_drain@Base 2.5.1 + natsSub_enqueueMessage@Base 3.9.0 + natsSub_enqueueUserMessage@Base 3.9.0 + natsSub_initDrain@Base 2.5.1 + natsSub_nextMsg@Base 3.2.0 + natsSub_release@Base 2.5.1 + natsSub_setDrainCompleteState@Base 2.5.1 + natsSub_setDrainSkip@Base 2.5.1 + natsSub_setMax@Base 2.5.1 + natsSub_startDrain@Base 2.5.1 + natsSub_unlockRelease@Base 3.9.0 + natsSub_updateDrainStatus@Base 2.5.1 + natsSubscription_AutoUnsubscribe@Base 2.5.1 + natsSubscription_ClearMaxPending@Base 2.5.1 + natsSubscription_Destroy@Base 2.5.1 + natsSubscription_Drain@Base 2.5.1 + natsSubscription_DrainCompletionStatus@Base 2.5.1 + natsSubscription_DrainTimeout@Base 2.5.1 + natsSubscription_Fetch@Base 3.2.0 + natsSubscription_FetchRequest@Base 3.4.0 + natsSubscription_GetConsumerInfo@Base 3.3.0 + natsSubscription_GetDelivered@Base 2.5.1 + natsSubscription_GetDropped@Base 2.5.1 + natsSubscription_GetID@Base 3.4.0 + natsSubscription_GetMaxPending@Base 2.5.1 + natsSubscription_GetPending@Base 2.5.1 + natsSubscription_GetPendingLimits@Base 2.5.1 + natsSubscription_GetSequenceMismatch@Base 3.2.0 + natsSubscription_GetStats@Base 2.5.1 + natsSubscription_GetSubject@Base 3.4.0 + natsSubscription_IsValid@Base 2.5.1 + natsSubscription_NextMsg@Base 2.5.1 + natsSubscription_NoDeliveryDelay@Base 2.5.1 + natsSubscription_QueuedMsgs@Base 2.5.1 + natsSubscription_SetOnCompleteCB@Base 2.5.1 + natsSubscription_SetPendingLimits@Base 2.5.1 + natsSubscription_Unsubscribe@Base 2.5.1 + natsSubscription_WaitForDrainCompletion@Base 2.5.1 + natsThreadLocal_CreateKey@Base 2.5.1 + natsThreadLocal_DestroyKey@Base 2.5.1 + natsThreadLocal_Get@Base 2.5.1 + natsThreadLocal_SetEx@Base 2.5.1 + natsThread_Create@Base 2.5.1 + natsThread_Destroy@Base 2.5.1 + natsThread_Detach@Base 2.5.1 + natsThread_IsCurrent@Base 2.5.1 + natsThread_Join@Base 2.5.1 + natsThread_Yield@Base 2.5.1 + natsTimer_Create@Base 2.5.1 + natsTimer_Destroy@Base 2.5.1 + natsTimer_Release@Base 2.5.1 + natsTimer_Reset@Base 2.5.1 + natsTimer_Stop@Base 2.5.1 + natsUrl_Create@Base 2.5.1 + natsUrl_Destroy@Base 2.5.1 + nats_Base32_DecodeString@Base 2.5.1 + nats_Base32_Init@Base 2.5.1 + nats_Base64RawURL_EncodeString@Base 2.5.1 + nats_Base64_Decode@Base 3.2.0 + nats_Base64_DecodeInPlace@Base 3.2.0 + nats_Base64_DecodeLen@Base 3.2.0 + nats_Base64_Encode@Base 3.2.0 + nats_CRC16_Compute@Base 2.5.1 + nats_CRC16_Validate@Base 2.5.1 + nats_CheckCompatibilityImpl@Base 2.5.1 + nats_Close@Base 2.5.1 + nats_CloseAndWait@Base 2.5.1 + nats_CreateStringFromBuffer@Base 2.5.1 + nats_EncodeTimeUTC@Base 3.2.0 + nats_FreeAddrInfo@Base 2.5.1 + nats_GetBoolStr@Base 2.5.1 + nats_GetJWTOrSeed@Base 2.5.1 + nats_GetLastError@Base 2.5.1 + nats_GetLastErrorStack@Base 2.5.1 + nats_GetVersion@Base 2.5.1 + nats_GetVersionNumber@Base 2.5.1 + nats_HostIsIP@Base 2.5.1 + nats_InitOnce@Base 2.5.1 + nats_IsSubjectValid@Base 3.3.0 + nats_JSONArrayAsArrays@Base 3.2.0 + nats_JSONArrayAsBools@Base 3.2.0 + nats_JSONArrayAsDoubles@Base 3.2.0 + nats_JSONArrayAsInts@Base 3.2.0 + nats_JSONArrayAsLongs@Base 3.2.0 + nats_JSONArrayAsObjects@Base 3.2.0 + nats_JSONArrayAsStrings@Base 3.2.0 + nats_JSONArrayAsULongs@Base 3.2.0 + nats_JSONDestroy@Base 2.5.1 + nats_JSONGetArrayArray@Base 3.2.0 + nats_JSONGetArrayBool@Base 3.2.0 + nats_JSONGetArrayDouble@Base 3.2.0 + nats_JSONGetArrayField@Base 2.5.1 + nats_JSONGetArrayInt@Base 3.2.0 + nats_JSONGetArrayLong@Base 3.2.0 + nats_JSONGetArrayObject@Base 3.2.0 + nats_JSONGetArrayStr@Base 2.5.1 + nats_JSONGetArrayULong@Base 3.2.0 + nats_JSONGetBool@Base 2.5.1 + nats_JSONGetBytes@Base 3.2.0 + nats_JSONGetDouble@Base 2.5.1 + nats_JSONGetField@Base 2.5.1 + nats_JSONGetInt32@Base 3.2.0 + nats_JSONGetInt@Base 2.5.1 + nats_JSONGetLong@Base 2.5.1 + nats_JSONGetObject@Base 3.2.0 + nats_JSONGetStr@Base 2.5.1 + nats_JSONGetStrPtr@Base 3.2.0 + nats_JSONGetTime@Base 3.2.0 + nats_JSONGetUInt16@Base 3.2.0 + nats_JSONGetULong@Base 2.5.1 + nats_JSONParse@Base 2.5.1 + nats_JSONRange@Base 3.3.0 + nats_NormalizeErr@Base 2.5.1 + nats_Now@Base 2.5.1 + nats_NowInNanoSeconds@Base 2.5.1 + nats_Open@Base 2.5.1 + nats_OpenWithConfig@Base 3.9.0 + nats_ParseControl@Base 2.5.1 + nats_ParseInt64@Base 2.5.1 + nats_PrintLastErrorStack@Base 2.5.1 + nats_Rand64@Base 3.2.0 + nats_ReadFile@Base 2.5.1 + nats_ReleaseThreadMemory@Base 2.5.1 + nats_SetMessageDeliveryPoolSize@Base 2.5.1 + nats_Sign@Base 2.5.1 + nats_Sleep@Base 2.5.1 + nats_Trim@Base 2.5.1 + nats_assignSubToDispatch@Base 3.9.0 + nats_asyncCbsThreadf@Base 3.9.0 + nats_cleanupThreadSSL@Base 3.9.0 + nats_clearLastError@Base 2.5.1 + nats_cloneMetadata@Base 3.7.0 + nats_closeLib@Base 3.9.0 + nats_createControlMessages@Base 3.9.0 + nats_dispatchThreadOwn@Base 3.9.0 + nats_dispatchThreadPool@Base 3.9.0 + nats_doNotUpdateErrStack@Base 2.5.1 + nats_formatStringArray@Base 3.9.0 + nats_freeAsyncCbs@Base 3.9.0 + nats_freeDispatcherPool@Base 3.9.0 + nats_freeGC@Base 3.9.0 + nats_freeMetadata@Base 3.7.0 + nats_freeTimers@Base 3.9.0 + nats_garbageCollectorThreadf@Base 3.9.0 + nats_getTimersCount@Base 2.5.1 + nats_getTimersCountInList@Base 2.5.1 + nats_initDispatcherPool@Base 3.9.0 + nats_initForOS@Base 3.9.0 + nats_initSSL@Base 3.9.0 + nats_lib@Base 3.9.0 + nats_marshalDuration@Base 3.7.0 + nats_marshalLong@Base 3.2.0 + nats_marshalMetadata@Base 3.7.0 + nats_marshalULong@Base 3.2.0 + nats_openLib@Base 3.9.0 + nats_overrideDefaultOptionsWithConfig@Base 3.9.0 + nats_parseTime@Base 3.4.0 + nats_postAsyncCbInfo@Base 2.5.1 + nats_resetTimer@Base 2.5.1 + nats_setErrStatusAndTxt@Base 3.2.0 + nats_setErrorReal@Base 2.5.1 + nats_setMessageDispatcherPoolCap@Base 3.9.0 + nats_setNATSThreadKey@Base 2.5.1 + nats_setTargetTime@Base 2.5.1 + nats_signalDispatcherPoolToShutdown@Base 3.9.0 + nats_sslRegisterThreadForCleanup@Base 2.5.1 + nats_stopTimer@Base 2.5.1 + nats_testInspectClientConfig@Base 3.9.0 + nats_timerThreadf@Base 3.9.0 + nats_unmarshalMetadata@Base 3.7.0 + nats_updateErrStack@Base 2.5.1 + nats_updateErrTxt@Base 2.5.1 + nats_waitForDispatcherPoolShutdown@Base 3.9.0 + pb__ack__descriptor@Base 2.5.1 + pb__ack__free_unpacked@Base 2.5.1 + pb__ack__get_packed_size@Base 2.5.1 + pb__ack__init@Base 2.5.1 + pb__ack__pack@Base 2.5.1 + pb__ack__pack_to_buffer@Base 2.5.1 + pb__ack__unpack@Base 2.5.1 + pb__close_request__descriptor@Base 2.5.1 + pb__close_request__free_unpacked@Base 2.5.1 + pb__close_request__get_packed_size@Base 2.5.1 + pb__close_request__init@Base 2.5.1 + pb__close_request__pack@Base 2.5.1 + pb__close_request__pack_to_buffer@Base 2.5.1 + pb__close_request__unpack@Base 2.5.1 + pb__close_response__descriptor@Base 2.5.1 + pb__close_response__free_unpacked@Base 2.5.1 + pb__close_response__get_packed_size@Base 2.5.1 + pb__close_response__init@Base 2.5.1 + pb__close_response__pack@Base 2.5.1 + pb__close_response__pack_to_buffer@Base 2.5.1 + pb__close_response__unpack@Base 2.5.1 + pb__connect_request__descriptor@Base 2.5.1 + pb__connect_request__free_unpacked@Base 2.5.1 + pb__connect_request__get_packed_size@Base 2.5.1 + pb__connect_request__init@Base 2.5.1 + pb__connect_request__pack@Base 2.5.1 + pb__connect_request__pack_to_buffer@Base 2.5.1 + pb__connect_request__unpack@Base 2.5.1 + pb__connect_response__descriptor@Base 2.5.1 + pb__connect_response__free_unpacked@Base 2.5.1 + pb__connect_response__get_packed_size@Base 2.5.1 + pb__connect_response__init@Base 2.5.1 + pb__connect_response__pack@Base 2.5.1 + pb__connect_response__pack_to_buffer@Base 2.5.1 + pb__connect_response__unpack@Base 2.5.1 + pb__msg_proto__descriptor@Base 2.5.1 + pb__msg_proto__free_unpacked@Base 2.5.1 + pb__msg_proto__get_packed_size@Base 2.5.1 + pb__msg_proto__init@Base 2.5.1 + pb__msg_proto__pack@Base 2.5.1 + pb__msg_proto__pack_to_buffer@Base 2.5.1 + pb__msg_proto__unpack@Base 2.5.1 + pb__ping__descriptor@Base 2.5.1 + pb__ping__free_unpacked@Base 2.5.1 + pb__ping__get_packed_size@Base 2.5.1 + pb__ping__init@Base 2.5.1 + pb__ping__pack@Base 2.5.1 + pb__ping__pack_to_buffer@Base 2.5.1 + pb__ping__unpack@Base 2.5.1 + pb__ping_response__descriptor@Base 2.5.1 + pb__ping_response__free_unpacked@Base 2.5.1 + pb__ping_response__get_packed_size@Base 2.5.1 + pb__ping_response__init@Base 2.5.1 + pb__ping_response__pack@Base 2.5.1 + pb__ping_response__pack_to_buffer@Base 2.5.1 + pb__ping_response__unpack@Base 2.5.1 + pb__pub_ack__descriptor@Base 2.5.1 + pb__pub_ack__free_unpacked@Base 2.5.1 + pb__pub_ack__get_packed_size@Base 2.5.1 + pb__pub_ack__init@Base 2.5.1 + pb__pub_ack__pack@Base 2.5.1 + pb__pub_ack__pack_to_buffer@Base 2.5.1 + pb__pub_ack__unpack@Base 2.5.1 + pb__pub_msg__descriptor@Base 2.5.1 + pb__pub_msg__free_unpacked@Base 2.5.1 + pb__pub_msg__get_packed_size@Base 2.5.1 + pb__pub_msg__init@Base 2.5.1 + pb__pub_msg__pack@Base 2.5.1 + pb__pub_msg__pack_to_buffer@Base 2.5.1 + pb__pub_msg__unpack@Base 2.5.1 + pb__start_position__descriptor@Base 2.5.1 + pb__subscription_request__descriptor@Base 2.5.1 + pb__subscription_request__free_unpacked@Base 2.5.1 + pb__subscription_request__get_packed_size@Base 2.5.1 + pb__subscription_request__init@Base 2.5.1 + pb__subscription_request__pack@Base 2.5.1 + pb__subscription_request__pack_to_buffer@Base 2.5.1 + pb__subscription_request__unpack@Base 2.5.1 + pb__subscription_response__descriptor@Base 2.5.1 + pb__subscription_response__free_unpacked@Base 2.5.1 + pb__subscription_response__get_packed_size@Base 2.5.1 + pb__subscription_response__init@Base 2.5.1 + pb__subscription_response__pack@Base 2.5.1 + pb__subscription_response__pack_to_buffer@Base 2.5.1 + pb__subscription_response__unpack@Base 2.5.1 + pb__unsubscribe_request__descriptor@Base 2.5.1 + pb__unsubscribe_request__free_unpacked@Base 2.5.1 + pb__unsubscribe_request__get_packed_size@Base 2.5.1 + pb__unsubscribe_request__init@Base 2.5.1 + pb__unsubscribe_request__pack@Base 2.5.1 + pb__unsubscribe_request__pack_to_buffer@Base 2.5.1 + pb__unsubscribe_request__unpack@Base 2.5.1 + stanConnClose@Base 2.5.1 + stanConnOptions_Create@Base 2.5.1 + stanConnOptions_Destroy@Base 2.5.1 + stanConnOptions_SetConnectionLostHandler@Base 2.5.1 + stanConnOptions_SetConnectionWait@Base 2.5.1 + stanConnOptions_SetDiscoveryPrefix@Base 2.5.1 + stanConnOptions_SetMaxPubAcksInflight@Base 2.5.1 + stanConnOptions_SetNATSOptions@Base 2.5.1 + stanConnOptions_SetPings@Base 2.5.1 + stanConnOptions_SetPubAckWait@Base 2.5.1 + stanConnOptions_SetURL@Base 2.5.1 + stanConnOptions_clone@Base 2.5.1 + stanConn_defaultConnLostHandler@Base 2.5.1 + stanConn_release@Base 2.5.1 + stanConn_retain@Base 2.5.1 + stanConnection_Close@Base 2.5.1 + stanConnection_Connect@Base 2.5.1 + stanConnection_Destroy@Base 2.5.1 + stanConnection_GetNATSConnection@Base 2.5.1 + stanConnection_Publish@Base 2.5.1 + stanConnection_PublishAsync@Base 2.5.1 + stanConnection_QueueSubscribe@Base 2.5.1 + stanConnection_ReleaseNATSConnection@Base 2.5.1 + stanConnection_Subscribe@Base 2.5.1 + stanMsg_Destroy@Base 2.5.1 + stanMsg_GetData@Base 2.5.1 + stanMsg_GetDataLength@Base 2.5.1 + stanMsg_GetSequence@Base 2.5.1 + stanMsg_GetTimestamp@Base 2.5.1 + stanMsg_IsRedelivered@Base 2.5.1 + stanMsg_create@Base 2.5.1 + stanProcessPubAck@Base 2.5.1 + stanSubOptions_Create@Base 2.5.1 + stanSubOptions_DeliverAllAvailable@Base 2.5.1 + stanSubOptions_Destroy@Base 2.5.1 + stanSubOptions_SetAckWait@Base 2.5.1 + stanSubOptions_SetDurableName@Base 2.5.1 + stanSubOptions_SetManualAckMode@Base 2.5.1 + stanSubOptions_SetMaxInflight@Base 2.5.1 + stanSubOptions_StartAtSequence@Base 2.5.1 + stanSubOptions_StartAtTime@Base 2.5.1 + stanSubOptions_StartAtTimeDelta@Base 2.5.1 + stanSubOptions_StartWithLastReceived@Base 2.5.1 + stanSubOptions_clone@Base 2.5.1 + stanSub_release@Base 2.5.1 + stanSubscription_AckMsg@Base 2.5.1 + stanSubscription_Close@Base 2.5.1 + stanSubscription_Destroy@Base 2.5.1 + stanSubscription_SetOnCompleteCB@Base 2.5.1 + stanSubscription_Unsubscribe@Base 2.5.1 + testAllowMillisecInPings@Base 2.5.1 + testDrainAutoUnsubRace@Base 2.5.1 + threadsToJoin@Base 2.5.1 diff --git a/rules b/rules new file mode 100755 index 0000000..97b9e17 --- /dev/null +++ b/rules @@ -0,0 +1,20 @@ +#!/usr/bin/make -f +#export DH_VERBOSE = 1 + +# see FEATURE AREAS in dpkg-buildflags(1) +export DEB_BUILD_MAINT_OPTIONS = hardening=+all + +# see ENVIRONMENT in dpkg-buildflags(1) +# package maintainers to append CFLAGS +export DEB_CFLAGS_MAINT_APPEND = -Wall -pedantic +# package maintainers to append LDFLAGS + +%: + dh $@ --buildsystem=cmake + +override_dh_auto_configure: + dh_auto_configure -- \ + -DCMAKE_LIBRARY_PATH=$(DEB_HOST_MULTIARCH) \ + -DNATS_BUILD_USE_SODIUM=ON + +override_dh_auto_test: diff --git a/source/format b/source/format new file mode 100644 index 0000000..163aaf8 --- /dev/null +++ b/source/format @@ -0,0 +1 @@ +3.0 (quilt) diff --git a/upstream/metadata b/upstream/metadata new file mode 100644 index 0000000..207bd47 --- /dev/null +++ b/upstream/metadata @@ -0,0 +1,5 @@ +--- +Bug-Database: https://github.com/nats-io/nats.c/issues +Bug-Submit: https://github.com/nats-io/nats.c/issues/new +Repository: https://github.com/nats-io/nats.c.git +Repository-Browse: https://github.com/nats-io/nats.c diff --git a/watch b/watch new file mode 100644 index 0000000..90cff1f --- /dev/null +++ b/watch @@ -0,0 +1,9 @@ +# Compulsory line, this is a version 4 file +version=4 + +# PGP signature mangle, so foo.tar.gz has foo.tar.gz.sig +#opts="pgpsigurlmangle=s%$%.sig%" + +opts="filenamemangle=s%(?:.*?)?v?(\d[\d.]*)\.tar\.gz%nats.c-$1.tar.gz%" \ + https://github.com/nats-io/nats.c/tags \ + (?:.*?/)?v?(\d[\d.]*)\.tar\.gz debian uupdate