mirror of
https://github.com/zeromq/libzmq.git
synced 2025-08-11 21:18:16 +02:00
Compare commits
No commits in common. "master" and "v4.2.5" have entirely different histories.
@ -38,7 +38,7 @@ SpaceInEmptyParentheses: false
|
||||
SpacesInAngles: false
|
||||
SpacesInParentheses: false
|
||||
SpacesInSquareBrackets: false
|
||||
Standard: Cpp03
|
||||
Standard: Cpp11
|
||||
|
||||
SortIncludes: false
|
||||
|
||||
|
429
.clang-tidy
429
.clang-tidy
@ -1,429 +0,0 @@
|
||||
Checks: "*,\
|
||||
# not currently a coding convention, but conceivable,\
|
||||
-llvm-include-order,\
|
||||
# currently the coding convention deliberately produces violations of these,\
|
||||
# rules, but it may make sense to reconsider,\
|
||||
-readability-implicit-bool-conversion,\
|
||||
-readability-braces-around-statements,\
|
||||
-readability-named-parameter,\
|
||||
-fuchsia-default-arguments,\
|
||||
-google-readability-todo,\
|
||||
-google-runtime-int,\
|
||||
-cppcoreguidelines-avoid-goto,\
|
||||
-hicpp-avoid-goto, \
|
||||
-cppcoreguidelines-pro-type-member-init,\
|
||||
-cppcoreguidelines-pro-type-static-cast-downcast,\
|
||||
-readability-identifier-naming,\
|
||||
# not applicable,\
|
||||
-fuchsia-default-arguments-calls,\
|
||||
-fuchsia-overloaded-operator,\
|
||||
-fuchsia-statically-constructed-objects,\
|
||||
# not currently a coding convention, C++11-specific, but conceivable,\
|
||||
-modernize-use-nullptr,\
|
||||
-modernize-use-equals-default,\
|
||||
-modernize-deprecated-headers,\
|
||||
# not currently a coding convention, C++11-specific and hard to implement,\
|
||||
-hicpp-no-malloc,\
|
||||
-hicpp-avoid-c-arrays,\
|
||||
-modernize-avoid-c-arrays,\
|
||||
-modernize-pass-by-value,\
|
||||
-modernize-loop-convert,\
|
||||
-modernize-use-auto,\
|
||||
-modernize-use-trailing-return-type,\
|
||||
-modernize-use-using,\
|
||||
-modernize-return-braced-init-list,\
|
||||
-cppcoreguidelines-avoid-c-arrays,\
|
||||
-cppcoreguidelines-no-malloc,\
|
||||
-cppcoreguidelines-owning-memory,\
|
||||
-cppcoreguidelines-pro-type-union-access,\
|
||||
-cppcoreguidelines-pro-bounds-array-to-pointer-decay,\
|
||||
-cppcoreguidelines-pro-bounds-constant-array-index,\
|
||||
-cppcoreguidelines-pro-bounds-pointer-arithmetic,\
|
||||
# not easily possible to implement (maybe replace by specific exclusions),\
|
||||
-cppcoreguidelines-pro-type-vararg,\
|
||||
-cppcoreguidelines-pro-type-reinterpret-cast,\
|
||||
-hicpp-signed-bitwise,\
|
||||
# duplicates,\
|
||||
-google-readability-braces-around-statements,\
|
||||
-cppcoreguidelines-pro-type-cstyle-cast,\
|
||||
-cppcoreguidelines-avoid-magic-numbers,\
|
||||
-readability-magic-numbers,\
|
||||
-hicpp-braces-around-statements,\
|
||||
-hicpp-use-equals-default,\
|
||||
-hicpp-deprecated-headers,\
|
||||
-hicpp-no-assembler,\
|
||||
-hicpp-vararg,\
|
||||
-hicpp-use-auto,\
|
||||
-hicpp-use-nullptr,\
|
||||
-hicpp-no-array-decay,\
|
||||
-hicpp-member-init"
|
||||
WarningsAsErrors: ''
|
||||
HeaderFilterRegex: ''
|
||||
# AnalyzeTemporaryDtors: false
|
||||
CheckOptions:
|
||||
# - key: cert-dcl59-cpp.HeaderFileExtensions
|
||||
# value: h,hh,hpp,hxx
|
||||
# - key: cert-err61-cpp.CheckThrowTemporaries
|
||||
# value: '1'
|
||||
# - key: cert-oop11-cpp.IncludeStyle
|
||||
# value: llvm
|
||||
# - key: cert-oop11-cpp.UseCERTSemantics
|
||||
# value: '1'
|
||||
# - key: cppcoreguidelines-pro-bounds-constant-array-index.GslHeader
|
||||
# value: ''
|
||||
# - key: cppcoreguidelines-pro-bounds-constant-array-index.IncludeStyle
|
||||
# value: '0'
|
||||
# - key: cppcoreguidelines-pro-type-member-init.IgnoreArrays
|
||||
# value: '0'
|
||||
# - key: google-build-namespaces.HeaderFileExtensions
|
||||
# value: h,hh,hpp,hxx
|
||||
# - key: google-global-names-in-headers.HeaderFileExtensions
|
||||
# value: h
|
||||
# - key: google-readability-braces-around-statements.ShortStatementLines
|
||||
# value: '1'
|
||||
# - key: google-readability-function-size.BranchThreshold
|
||||
# value: '4294967295'
|
||||
# - key: google-readability-function-size.LineThreshold
|
||||
# value: '4294967295'
|
||||
# - key: google-readability-function-size.StatementThreshold
|
||||
# value: '800'
|
||||
# - key: google-readability-namespace-comments.ShortNamespaceLines
|
||||
# value: '10'
|
||||
# - key: google-readability-namespace-comments.SpacesBeforeComments
|
||||
# value: '2'
|
||||
# - key: google-runtime-int.SignedTypePrefix
|
||||
# value: int
|
||||
# - key: google-runtime-int.TypeSuffix
|
||||
# value: ''
|
||||
# - key: google-runtime-int.UnsignedTypePrefix
|
||||
# value: uint
|
||||
# - key: llvm-namespace-comment.ShortNamespaceLines
|
||||
# value: '1'
|
||||
# - key: llvm-namespace-comment.SpacesBeforeComments
|
||||
# value: '1'
|
||||
# - key: misc-assert-side-effect.AssertMacros
|
||||
# value: assert
|
||||
# - key: misc-assert-side-effect.CheckFunctionCalls
|
||||
# value: '0'
|
||||
# - key: misc-dangling-handle.HandleClasses
|
||||
# value: 'std::basic_string_view;std::experimental::basic_string_view'
|
||||
# - key: misc-definitions-in-headers.HeaderFileExtensions
|
||||
# value: ',h,hh,hpp,hxx'
|
||||
# - key: misc-definitions-in-headers.UseHeaderFileExtension
|
||||
# value: '1'
|
||||
# - key: misc-misplaced-widening-cast.CheckImplicitCasts
|
||||
# value: '1'
|
||||
# - key: misc-move-constructor-init.IncludeStyle
|
||||
# value: llvm
|
||||
# - key: misc-move-constructor-init.UseCERTSemantics
|
||||
# value: '0'
|
||||
# - key: misc-sizeof-expression.WarnOnSizeOfCompareToConstant
|
||||
# value: '1'
|
||||
# - key: misc-sizeof-expression.WarnOnSizeOfConstant
|
||||
# value: '1'
|
||||
# - key: misc-sizeof-expression.WarnOnSizeOfThis
|
||||
# value: '1'
|
||||
# - key: misc-string-constructor.LargeLengthThreshold
|
||||
# value: '8388608'
|
||||
# - key: misc-string-constructor.WarnOnLargeLength
|
||||
# value: '1'
|
||||
# - key: misc-suspicious-missing-comma.MaxConcatenatedTokens
|
||||
# value: '5'
|
||||
# - key: misc-suspicious-missing-comma.RatioThreshold
|
||||
# value: '0.200000'
|
||||
# - key: misc-suspicious-missing-comma.SizeThreshold
|
||||
# value: '5'
|
||||
# - key: misc-suspicious-string-compare.StringCompareLikeFunctions
|
||||
# value: ''
|
||||
# - key: misc-suspicious-string-compare.WarnOnImplicitComparison
|
||||
# value: '1'
|
||||
# - key: misc-suspicious-string-compare.WarnOnLogicalNotComparison
|
||||
# value: '0'
|
||||
# - key: misc-throw-by-value-catch-by-reference.CheckThrowTemporaries
|
||||
# value: '1'
|
||||
# - key: modernize-loop-convert.MaxCopySize
|
||||
# value: '16'
|
||||
# - key: modernize-loop-convert.MinConfidence
|
||||
# value: reasonable
|
||||
# - key: modernize-loop-convert.NamingStyle
|
||||
# value: CamelCase
|
||||
# - key: modernize-pass-by-value.IncludeStyle
|
||||
# value: llvm
|
||||
# - key: modernize-replace-auto-ptr.IncludeStyle
|
||||
# value: llvm
|
||||
# - key: modernize-use-nullptr.NullMacros
|
||||
# value: 'NULL'
|
||||
# - key: performance-faster-string-find.StringLikeClasses
|
||||
# value: 'std::basic_string'
|
||||
# - key: performance-for-range-copy.WarnOnAllAutoCopies
|
||||
# value: '0'
|
||||
# - key: readability-braces-around-statements.ShortStatementLines
|
||||
# value: '1'
|
||||
# - key: readability-function-size.BranchThreshold
|
||||
# value: '4294967295'
|
||||
# - key: readability-function-size.LineThreshold
|
||||
# value: '4294967295'
|
||||
# - key: readability-function-size.StatementThreshold
|
||||
# value: '800'
|
||||
# - key: readability-identifier-naming.AbstractClassCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.AbstractClassPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.AbstractClassSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ClassCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ClassConstantCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ClassConstantPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ClassConstantSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ClassMemberCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ClassMemberPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ClassMemberSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ClassMethodCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ClassMethodPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ClassMethodSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ClassPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ClassSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstantCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ConstantMemberCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ConstantMemberPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstantMemberSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstantParameterCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ConstantParameterPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstantParameterSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstantPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstantSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstexprFunctionCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ConstexprFunctionPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstexprFunctionSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstexprMethodCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ConstexprMethodPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstexprMethodSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstexprVariableCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ConstexprVariablePrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ConstexprVariableSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.EnumCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.EnumConstantCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.EnumConstantPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.EnumConstantSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.EnumPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.EnumSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.FunctionCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.FunctionPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.FunctionSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.GlobalConstantCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.GlobalConstantPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.GlobalConstantSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.GlobalFunctionCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.GlobalFunctionPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.GlobalFunctionSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.GlobalVariableCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.GlobalVariablePrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.GlobalVariableSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.IgnoreFailedSplit
|
||||
# value: '0'
|
||||
# - key: readability-identifier-naming.InlineNamespaceCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.InlineNamespacePrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.InlineNamespaceSuffix
|
||||
# value: ''
|
||||
- key: readability-identifier-naming.LocalConstantCase
|
||||
value: lower_case
|
||||
- key: readability-identifier-naming.LocalConstantPrefix
|
||||
value: ''
|
||||
- key: readability-identifier-naming.LocalConstantSuffix
|
||||
value: ''
|
||||
- key: readability-identifier-naming.LocalVariableCase
|
||||
value: lower_case
|
||||
- key: readability-identifier-naming.LocalVariablePrefix
|
||||
value: ''
|
||||
- key: readability-identifier-naming.LocalVariableSuffix
|
||||
value: ''
|
||||
# - key: readability-identifier-naming.MemberCase
|
||||
# value: lower_case
|
||||
# - key: readability-identifier-naming.MemberPrefix
|
||||
# value: '_'
|
||||
# - key: readability-identifier-naming.MemberSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.MethodCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.MethodPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.MethodSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.NamespaceCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.NamespacePrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.NamespaceSuffix
|
||||
# value: ''
|
||||
- key: readability-identifier-naming.ParameterCase
|
||||
value: lower_case
|
||||
# - key: readability-identifier-naming.ParameterPackCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ParameterPackPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ParameterPackSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ParameterPrefix
|
||||
# value: ''
|
||||
- key: readability-identifier-naming.ParameterSuffix
|
||||
value: '_'
|
||||
- key: readability-identifier-naming.PrivateMemberCase
|
||||
value: lower_case
|
||||
- key: readability-identifier-naming.PrivateMemberPrefix
|
||||
value: '_'
|
||||
- key: readability-identifier-naming.PrivateMemberSuffix
|
||||
value: ''
|
||||
# - key: readability-identifier-naming.PrivateMethodCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.PrivateMethodPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.PrivateMethodSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ProtectedMemberCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ProtectedMemberPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ProtectedMemberSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ProtectedMethodCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ProtectedMethodPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ProtectedMethodSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.PublicMemberCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.PublicMemberPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.PublicMemberSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.PublicMethodCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.PublicMethodPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.PublicMethodSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.StaticConstantCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.StaticConstantPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.StaticConstantSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.StaticVariableCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.StaticVariablePrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.StaticVariableSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.StructCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.StructPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.StructSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.TemplateParameterCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.TemplateParameterPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.TemplateParameterSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.TemplateTemplateParameterCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.TemplateTemplateParameterPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.TemplateTemplateParameterSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.TypeTemplateParameterCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.TypeTemplateParameterPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.TypeTemplateParameterSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.TypedefCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.TypedefPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.TypedefSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.UnionCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.UnionPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.UnionSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ValueTemplateParameterCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.ValueTemplateParameterPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.ValueTemplateParameterSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.VariableCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.VariablePrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.VariableSuffix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.VirtualMethodCase
|
||||
# value: aNy_CasE
|
||||
# - key: readability-identifier-naming.VirtualMethodPrefix
|
||||
# value: ''
|
||||
# - key: readability-identifier-naming.VirtualMethodSuffix
|
||||
# value: ''
|
||||
# - key: readability-simplify-boolean-expr.ChainedConditionalAssignment
|
||||
# value: '0'
|
||||
# - key: readability-simplify-boolean-expr.ChainedConditionalReturn
|
||||
# value: '0'
|
||||
- key: modernize-use-override.OverrideSpelling
|
||||
value: 'ZMQ_OVERRIDE'
|
||||
- key: modernize-use-override.FinalSpelling
|
||||
value: 'ZMQ_FINAL'
|
@ -1,2 +0,0 @@
|
||||
# tree-wide clang format
|
||||
41f459e1dc6f7cdedd1268298153c970e290b2ce
|
@ -21,28 +21,16 @@ Please avoid sending a pull request with recursive merge nodes, as they
|
||||
are impossible to fix once merged. Please rebase your branch on
|
||||
zeromq/libzmq master instead of merging it.
|
||||
|
||||
```
|
||||
git remote add upstream git@github.com:zeromq/libzmq.git
|
||||
git fetch upstream
|
||||
git rebase upstream/master
|
||||
git push -f
|
||||
```
|
||||
|
||||
In case you already merged instead of rebasing you can drop the merge commit.
|
||||
|
||||
```
|
||||
git rebase -i HEAD~10
|
||||
```
|
||||
|
||||
Now, find your merge commit and mark it as drop and save. Finally rebase!
|
||||
|
||||
If you are a new contributor please have a look at our contributing guidelines:
|
||||
[CONTRIBUTING](http://zeromq.org/docs:contributing)
|
||||
|
||||
# FIRST TIME CONTRIBUTORS PLEASE NOTE
|
||||
|
||||
Please add an additional commit with a relicensing grant.
|
||||
|
||||
[Example](https://github.com/zeromq/libzmq/commit/fecbd42dbe45455fff3b6456350ceca047b82050)
|
||||
|
||||
[More information on RELICENSING effort](https://github.com/zeromq/libzmq/tree/master/RELICENSE/README.md)
|
19
.github/stale.yml
vendored
19
.github/stale.yml
vendored
@ -1,19 +0,0 @@
|
||||
# Number of days of inactivity before an issue becomes stale
|
||||
daysUntilStale: 365
|
||||
# Number of days of inactivity before a stale issue is closed
|
||||
daysUntilClose: 56
|
||||
# Issues with these labels will never be considered stale
|
||||
exemptLabels:
|
||||
- "Help Request"
|
||||
- "Feature Request"
|
||||
- "Problem reproduced"
|
||||
- Critical
|
||||
# Label to use when marking an issue as stale
|
||||
staleLabel: stale
|
||||
# Comment to post when marking an issue as stale. Set to `false` to disable
|
||||
markComment: >
|
||||
This issue has been automatically marked as stale because it has not had
|
||||
activity for 365 days. It will be closed if no further activity occurs within
|
||||
56 days. Thank you for your contributions.
|
||||
# Comment to post when closing a stale issue. Set to `false` to disable
|
||||
closeComment: false
|
230
.github/workflows/CI.yaml
vendored
230
.github/workflows/CI.yaml
vendored
@ -1,230 +0,0 @@
|
||||
name: CI
|
||||
on:
|
||||
push:
|
||||
pull_request:
|
||||
schedule:
|
||||
- cron: "0 9 * * 5"
|
||||
|
||||
jobs:
|
||||
build:
|
||||
if: github.event_name == 'pull_request' || github.event_name == 'push'
|
||||
runs-on: ${{ matrix.os }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
include:
|
||||
- platform: x64
|
||||
configuration: release
|
||||
os: windows-2019
|
||||
WITH_LIBSODIUM: ON
|
||||
ENABLE_CURVE: ON
|
||||
CMAKE_GENERATOR: Visual Studio 16 2019
|
||||
MSVCVERSION: v142
|
||||
MSVCYEAR: vs2019
|
||||
ARTIFACT_NAME: v142-x64
|
||||
ENABLE_DRAFTS: ON
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: default
|
||||
PACKAGES: asciidoctor
|
||||
DRAFT: disabled
|
||||
POLLER: select
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: default
|
||||
DRAFT: disabled
|
||||
POLLER: poll
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: android
|
||||
NDK_VERSION: android-ndk-r25
|
||||
DRAFT: disabled
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: coverage
|
||||
PACKAGES: libkrb5-dev libnorm-dev libpgm-dev libgnutls28-dev lcov
|
||||
DRAFT: enabled
|
||||
GSSAPI: enabled
|
||||
PGM: enabled
|
||||
NORM: enabled
|
||||
TIPC: enabled
|
||||
TLS: enabled
|
||||
VMCI: enabled
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: valgrind
|
||||
PACKAGES: valgrind libgnutls28-dev
|
||||
DRAFT: enabled
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: cmake
|
||||
CURVE: libsodium
|
||||
DRAFT: enabled
|
||||
PACKAGES: cmake libsodium-dev
|
||||
TLS: enabled
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: cmake
|
||||
CURVE: libsodium
|
||||
DRAFT: enabled
|
||||
GSSAPI: enabled
|
||||
PACKAGES: cmake libsodium-dev libkrb5-dev
|
||||
TLS: enabled
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: cmake
|
||||
DRAFT: enabled
|
||||
PACKAGES: cmake clang-format-18
|
||||
DO_CLANG_FORMAT_CHECK: 1
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: default
|
||||
PACKAGES: libkrb5-dev libnorm-dev libpgm-dev libgnutls28-dev libsodium-dev libnss3-dev libbsd-dev
|
||||
CURVE: libsodium
|
||||
ADDRESS_SANITIZER: enabled
|
||||
DRAFT: enabled
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: default
|
||||
PACKAGES: libkrb5-dev libnorm-dev libpgm-dev libgnutls28-dev libsodium-dev libnss3-dev libbsd-dev
|
||||
CURVE: libsodium
|
||||
GSSAPI: enabled
|
||||
PGM: enabled
|
||||
NORM: enabled
|
||||
TIPC: enabled
|
||||
IPv6: ON
|
||||
TLS: enabled
|
||||
USE_NSS: yes
|
||||
VMCI: enabled
|
||||
DRAFT: enabled
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: default
|
||||
PACKAGES: libkrb5-dev libnorm-dev libpgm-dev libgnutls28-dev libsodium-dev libnss3-dev
|
||||
CURVE: libsodium
|
||||
GSSAPI: enabled
|
||||
PGM: enabled
|
||||
NORM: enabled
|
||||
TIPC: enabled
|
||||
IPv6: ON
|
||||
TLS: enabled
|
||||
USE_NSS: yes
|
||||
VMCI: enabled
|
||||
DRAFT: enabled
|
||||
FORCE_98: enabled
|
||||
CXX: clang++
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: abi-compliance-checker
|
||||
PACKAGES: abi-dumper abi-compliance-checker
|
||||
DRAFT: disabled
|
||||
- os: ubuntu-latest
|
||||
BUILD_TYPE: cmake
|
||||
PACKAGES: clang-tidy clang-tools
|
||||
DRAFT: enabled
|
||||
CXX: clang++
|
||||
- os: macos-latest
|
||||
BUILD_TYPE: default
|
||||
PACKAGES: automake autoconf libtool
|
||||
DRAFT: enabled
|
||||
- os: macos-latest
|
||||
BUILD_TYPE: default
|
||||
PACKAGES: automake autoconf libtool libsodium
|
||||
CURVE: libsodium
|
||||
DRAFT: disabled
|
||||
env:
|
||||
platform: ${{ matrix.platform }}
|
||||
configuration: ${{ matrix.configuration }}
|
||||
WITH_LIBSODIUM: ${{ matrix.WITH_LIBSODIUM }}
|
||||
ENABLE_CURVE: ${{ matrix.ENABLE_CURVE }}
|
||||
CMAKE_GENERATOR: ${{ matrix.CMAKE_GENERATOR }}
|
||||
MSVCVERSION: ${{ matrix.MSVCVERSION }}
|
||||
MSVCYEAR: ${{ matrix.MSVCYEAR }}
|
||||
ARTIFACT_NAME: ${{ matrix.ARTIFACT_NAME }}
|
||||
ENABLE_DRAFTS: ${{ matrix.ENABLE_DRAFTS }}
|
||||
SODIUM_INCLUDE_DIR: ${{ github.workspace }}\libsodium\src\libsodium\include"
|
||||
SODIUM_LIBRARY_DIR: ${{ github.workspace }}\libsodium\bin\${{ matrix.platform }}\${{ matrix.configuration }}\${{ matrix.MSVCVERSION }}\dynamic"
|
||||
LIBZMQ_SRCDIR: ${{ github.workspace }}\libzmq
|
||||
BUILD_TYPE: ${{ matrix.BUILD_TYPE }}
|
||||
CURVE: ${{ matrix.CURVE }}
|
||||
DRAFT: ${{ matrix.DRAFT }}
|
||||
ADDRESS_SANITIZER: ${{ matrix.ADDRESS_SANITIZER }}
|
||||
DO_CLANG_FORMAT_CHECK: ${{ matrix.DO_CLANG_FORMAT_CHECK }}
|
||||
FORCE_98: ${{ matrix.FORCE_98 }}
|
||||
CXX: ${{ matrix.CXX }}
|
||||
GSSAPI: ${{ matrix.GSSAPI }}
|
||||
PGM: ${{ matrix.PGM }}
|
||||
NORM: ${{ matrix.NORM }}
|
||||
TIPC: ${{ matrix.TIPC }}
|
||||
IPv6: ${{ matrix.IPv6 }}
|
||||
TLS: ${{ matrix.TLS }}
|
||||
USE_NSS: ${{ matrix.USE_NSS }}
|
||||
VMCI: ${{ matrix.VMCI }}
|
||||
POLLER: ${{ matrix.POLLER }}
|
||||
NDK_VERSION: ${{ matrix.NDK_VERSION }}
|
||||
ANDROID_NDK_ROOT: /tmp/${{ matrix.NDK_VERSION }}
|
||||
steps:
|
||||
- name: Add msbuild to PATH
|
||||
uses: microsoft/setup-msbuild@v1.0.2
|
||||
if: matrix.os == 'windows-2019'
|
||||
- uses: actions/checkout@v2
|
||||
if: matrix.WITH_LIBSODIUM == 'ON'
|
||||
with:
|
||||
repository: jedisct1/libsodium
|
||||
ref: stable
|
||||
path: libsodium
|
||||
- name: Compile libsodium
|
||||
if: matrix.WITH_LIBSODIUM == 'ON' && matrix.os == 'windows-2019'
|
||||
shell: cmd
|
||||
working-directory: libsodium
|
||||
run: msbuild /v:minimal /p:Configuration=%Configuration%DLL builds\msvc\%MSVCYEAR%\libsodium\libsodium.vcxproj
|
||||
- name: Copy libsodium
|
||||
if: matrix.WITH_LIBSODIUM == 'ON' && matrix.os == 'windows-2019'
|
||||
shell: powershell
|
||||
working-directory: libsodium
|
||||
run: Copy-Item "bin\${env:Platform}\${env:Configuration}\${env:MSVCVERSION}\dynamic\libsodium.lib" -Destination "bin\${env:Platform}\${env:Configuration}\${env:MSVCVERSION}\dynamic\sodium.lib"
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: libzmq
|
||||
- run: md build_libzmq
|
||||
shell: cmd
|
||||
if: matrix.os == 'windows-2019'
|
||||
- name: build-win
|
||||
if: matrix.os == 'windows-2019'
|
||||
shell: cmd
|
||||
working-directory: build_libzmq
|
||||
run: |
|
||||
cmake -D CMAKE_INCLUDE_PATH="%SODIUM_INCLUDE_DIR%" -D CMAKE_LIBRARY_PATH="%SODIUM_LIBRARY_DIR%" -D WITH_LIBSODIUM="%WITH_LIBSODIUM%" -D ENABLE_DRAFTS="%ENABLE_DRAFTS%" -D ENABLE_ANALYSIS="%ENABLE_ANALYSIS%" -D ENABLE_CURVE="%ENABLE_CURVE%" -D API_POLLER="%API_POLLER%" -D POLLER="%POLLER%" %EXTRA_FLAGS% -D WITH_LIBSODIUM="%WITH_LIBSODIUM%" -D LIBZMQ_WERROR="%LIBZMQ_WERROR%" -G "%CMAKE_GENERATOR%" "%LIBZMQ_SRCDIR%"
|
||||
cmake --build . --config %configuration% --target install -- -verbosity:Minimal -maxcpucount
|
||||
- name: test
|
||||
if: matrix.os == 'windows-2019'
|
||||
shell: cmd
|
||||
working-directory: build_libzmq
|
||||
run: ctest -C "%Configuration%"
|
||||
- name: Add debian packages
|
||||
if: matrix.os == 'ubuntu-latest' && (matrix.BUILD_TYPE != 'coverage' || github.repository == 'zeromq/libzmq')
|
||||
uses: myci-actions/add-deb-repo@10
|
||||
with:
|
||||
repo-name: obs
|
||||
repo: deb http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_20.04/ ./
|
||||
keys-asc: https://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_20.04/Release.key
|
||||
install: ${{ matrix.PACKAGES }}
|
||||
- name: Add brew packages
|
||||
if: matrix.os == 'macos-latest'
|
||||
shell: bash
|
||||
run: brew install ${{ matrix.PACKAGES }}
|
||||
- name: build
|
||||
if: (matrix.os == 'ubuntu-latest' || matrix.os == 'macos-latest') && (matrix.BUILD_TYPE != 'coverage' || github.repository == 'zeromq/libzmq')
|
||||
shell: bash
|
||||
working-directory: libzmq
|
||||
run: ./ci_build.sh
|
||||
- name: coveralls
|
||||
if: matrix.BUILD_TYPE == 'coverage' && github.repository == 'zeromq/libzmq'
|
||||
uses: coverallsapp/github-action@master
|
||||
with:
|
||||
github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
path-to-lcov: /home/runner/work/libzmq/libzmq/libzmq/lcov.info
|
||||
cron:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.event_name == 'schedule'
|
||||
strategy:
|
||||
fail-fast: false
|
||||
env:
|
||||
BUILD_TYPE: cmake
|
||||
CXX: clang++
|
||||
CLANG_TIDY: clang-tidy
|
||||
steps:
|
||||
- name: Add debian packages
|
||||
run: sudo apt-get install --yes clang-tidy clang-tools
|
||||
- name: build
|
||||
shell: bash
|
||||
working-directory: libzmq
|
||||
run: ./ci_build.sh
|
50
.github/workflows/Docs.yaml
vendored
50
.github/workflows/Docs.yaml
vendored
@ -1,50 +0,0 @@
|
||||
# Simple workflow for deploying static content to GitHub Pages
|
||||
name: Deploy API docs content to Pages
|
||||
|
||||
on:
|
||||
# Runs on pushes targeting the default branch
|
||||
push:
|
||||
branches: ["master"]
|
||||
|
||||
# Allows you to run this workflow manually from the Actions tab
|
||||
workflow_dispatch:
|
||||
|
||||
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
|
||||
permissions:
|
||||
contents: read
|
||||
pages: write
|
||||
id-token: write
|
||||
|
||||
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
|
||||
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
|
||||
concurrency:
|
||||
group: "pages"
|
||||
cancel-in-progress: false
|
||||
|
||||
jobs:
|
||||
# Single deploy job since we're just deploying
|
||||
deploy:
|
||||
environment:
|
||||
name: github-pages
|
||||
url: ${{ steps.deployment.outputs.page_url }}
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
|
||||
## libzmq-specific CI/CD ##
|
||||
- name: Install AsciiDoctor
|
||||
run: sudo apt install -y asciidoctor
|
||||
- name: Convert AsciiDoc with AsciiDoctor into HTML
|
||||
run: ./autogen.sh && ./configure && make --directory=doc
|
||||
|
||||
## boilerplate steps to publish github Pages ##
|
||||
- name: Setup Pages
|
||||
uses: actions/configure-pages@v3
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-pages-artifact@v2
|
||||
with:
|
||||
path: 'doc/'
|
||||
- name: Deploy to GitHub Pages
|
||||
id: deployment
|
||||
uses: actions/deploy-pages@v2
|
35
.github/workflows/Fuzzers.yaml
vendored
35
.github/workflows/Fuzzers.yaml
vendored
@ -1,35 +0,0 @@
|
||||
name: Fuzzers
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- master
|
||||
pull_request:
|
||||
paths:
|
||||
- '.github/workflows/Fuzzers.yaml'
|
||||
- 'src/*'
|
||||
- 'tests/*fuzzer.cpp'
|
||||
jobs:
|
||||
Fuzzing:
|
||||
runs-on: ubuntu-latest
|
||||
if: github.repository == 'zeromq/libzmq'
|
||||
strategy:
|
||||
matrix:
|
||||
san: [address, memory, undefined]
|
||||
steps:
|
||||
- name: Build Fuzzers (${{ matrix.san }})
|
||||
id: build
|
||||
uses: google/oss-fuzz/infra/cifuzz/actions/build_fuzzers@master
|
||||
with:
|
||||
sanitizer: ${{ matrix.san }}
|
||||
oss-fuzz-project-name: 'libzmq'
|
||||
allowed-broken-targets-percentage: 0
|
||||
dry-run: false
|
||||
- name: Run Fuzzers (${{ matrix.san }})
|
||||
id: run
|
||||
uses: google/oss-fuzz/infra/cifuzz/actions/run_fuzzers@master
|
||||
with:
|
||||
sanitizer: ${{ matrix.san }}
|
||||
oss-fuzz-project-name: 'libzmq'
|
||||
allowed-broken-targets-percentage: 0
|
||||
dry-run: false
|
||||
fuzz-seconds: 300
|
241
.gitignore
vendored
241
.gitignore
vendored
@ -1,48 +1,17 @@
|
||||
syntax: glob # for hg-git users
|
||||
|
||||
# Generated build scripts and IDE generating files
|
||||
## autotools
|
||||
/Makefile
|
||||
builds/Makefile
|
||||
builds/deprecated-msvc/Makefile
|
||||
builds/msvc/Makefile
|
||||
configure
|
||||
doc/Makefile
|
||||
doc/__pagelist
|
||||
libtool
|
||||
### automake
|
||||
Makefile.in
|
||||
.deps/
|
||||
.dirstamp
|
||||
### autoconf
|
||||
autom4te.cache
|
||||
aclocal.m4
|
||||
configure
|
||||
libtool
|
||||
config
|
||||
config.status
|
||||
config.log
|
||||
configure
|
||||
stamp-h1
|
||||
## CMake
|
||||
cmake-build-debug/
|
||||
build/
|
||||
## Android
|
||||
builds/android/prefix
|
||||
## IntelliJ
|
||||
.idea/
|
||||
## Visual Code
|
||||
.vscode/
|
||||
## other results-like folders
|
||||
bin/
|
||||
lib/
|
||||
obj/
|
||||
## Doxygen
|
||||
doxygen/
|
||||
## Packaging
|
||||
packaging/nuget/*.nupkg
|
||||
|
||||
# Test related build files
|
||||
libtestutil.a
|
||||
libunity.a
|
||||
|
||||
# Some build outputs and temporal files
|
||||
aclocal.m4
|
||||
autom4te.cache
|
||||
*.o
|
||||
*.gcno
|
||||
*.gcda
|
||||
@ -57,67 +26,149 @@ libunity.a
|
||||
*.ps
|
||||
*~
|
||||
.*~
|
||||
.deps
|
||||
.dirstamp
|
||||
.libs
|
||||
|
||||
# /src
|
||||
## Ignore generated files in configuration process
|
||||
src/platform.hpp*
|
||||
src/libzmq.pc
|
||||
|
||||
# /tools
|
||||
## Executable binaries are ignored
|
||||
tools/curve_keygen
|
||||
## Executable source files must be tracked
|
||||
!tools/*.[ch]
|
||||
!tools/*.[ch]pp
|
||||
|
||||
# /tests
|
||||
## Test binaries and logs are ignored
|
||||
tests/test*
|
||||
curve_keygen
|
||||
test_ancillaries
|
||||
test_heartbeats
|
||||
test_msg_ffn
|
||||
test_sockopt_hwm
|
||||
test_resource
|
||||
test_ipc_wildcard
|
||||
test_stream_empty
|
||||
test_stream_timeout
|
||||
test_issue_566
|
||||
test_ctx_destroy
|
||||
test_term_endpoint
|
||||
test_system
|
||||
test_monitor
|
||||
test_last_endpoint
|
||||
test_pair_inproc
|
||||
test_pair_ipc
|
||||
test_pair_tcp
|
||||
test_rebind_ipc
|
||||
test_reqrep_inproc
|
||||
test_reqrep_ipc
|
||||
test_reqrep_tcp
|
||||
test_shutdown_stress
|
||||
test_hwm
|
||||
test_timeo
|
||||
test_reqrep_device
|
||||
test_reqrep_drop
|
||||
test_sub_forward
|
||||
test_invalid_rep
|
||||
test_msg_flags
|
||||
test_ts_context
|
||||
test_connect_resolve
|
||||
test_immediate
|
||||
test_term_endpoint
|
||||
test_router_mandatory
|
||||
test_disconnect_inproc
|
||||
test_unbind_inproc
|
||||
test_unbind_wildcard
|
||||
test_raw_sock
|
||||
test_disconnect_inproc
|
||||
test_ctx_options
|
||||
test_iov
|
||||
test_security
|
||||
test_security_curve
|
||||
test_probe_router
|
||||
test_stream
|
||||
test_spec_dealer
|
||||
test_spec_pushpull
|
||||
test_spec_rep
|
||||
test_spec_req
|
||||
test_spec_router
|
||||
test_req_correlate
|
||||
test_req_relaxed
|
||||
test_fork
|
||||
test_conflate
|
||||
test_inproc_connect
|
||||
test_linger
|
||||
test_security_null
|
||||
test_security_plain
|
||||
test_proxy
|
||||
test_proxy_single_socket
|
||||
test_proxy_terminate
|
||||
test_abstract_ipc
|
||||
test_filter_ipc
|
||||
test_connect_delay_tipc
|
||||
test_pair_tipc
|
||||
test_reqrep_device_tipc
|
||||
test_reqrep_tipc
|
||||
test_router_handover
|
||||
test_router_mandatory_tipc
|
||||
test_shutdown_stress_tipc
|
||||
test_sub_forward_tipc
|
||||
test_term_endpoint_tipc
|
||||
test_many_sockets
|
||||
test_diffserv
|
||||
test_connect_rid
|
||||
test_srcfd
|
||||
test_stream_disconnect
|
||||
test_proxy_chain
|
||||
test_bind_src_address
|
||||
test_metadata
|
||||
test_id2fd
|
||||
test_capabilities
|
||||
test_hwm_pubsub
|
||||
test_router_mandatory_hwm
|
||||
test_xpub_nodrop
|
||||
test_xpub_manual
|
||||
test_xpub_welcome_msg
|
||||
test_atomics
|
||||
test_client_drop_more
|
||||
test_client_server
|
||||
test_server_drop_more
|
||||
test_thread_safe
|
||||
test_thread_safe_polling
|
||||
test_getsockopt_memset
|
||||
test_setsockopt
|
||||
test_stream_exceeds_buffer
|
||||
test_poller
|
||||
test_timers
|
||||
test_radio_dish
|
||||
test_udp
|
||||
test_scatter_gather
|
||||
test_socketopt_hwm
|
||||
test_use_fd_ipc
|
||||
test_use_fd_tcp
|
||||
test_pub_invert_matching
|
||||
test_dgram
|
||||
test_base85
|
||||
test_bind_after_connect_tcp
|
||||
test_sodium
|
||||
test_zmq_poll_fd
|
||||
test_reconnect_ivl
|
||||
tests/test*.log
|
||||
tests/test*.trs
|
||||
## Test source files must be tracked
|
||||
!tests/test*.[ch]
|
||||
!tests/test*.[ch]pp
|
||||
## Build script and documentations must be tracked
|
||||
!tests/CMakeLists.txt
|
||||
!tests/README.md
|
||||
|
||||
# /unittests
|
||||
## Unit test binaries and logs are ignored
|
||||
unittests/unittest_*
|
||||
unittests/unittest*.log
|
||||
unittests/unittest*.trs
|
||||
## Unit test source files must be tracked
|
||||
!unittests/unittest*.[ch]
|
||||
!unittests/unittest*.[ch]pp
|
||||
## Build script and documentations must be tracked
|
||||
!unittests/CMakeLists.txt
|
||||
!unittests/README.md
|
||||
|
||||
# check test log files
|
||||
test-suite*.log
|
||||
|
||||
# /perf
|
||||
## Benchmarking binaries and result files are ignored
|
||||
perf/*_lat
|
||||
perf/*_thr
|
||||
perf/benchmark_*
|
||||
perf/results
|
||||
## Benchmarking source files must be tracked
|
||||
!perf/*.[ch]
|
||||
!perf/*.[ch]pp
|
||||
## Benchmarking tool scripts must be tracked
|
||||
!perf/*.py
|
||||
!perf/*.sh
|
||||
|
||||
# /doc
|
||||
## Generated document files
|
||||
doc/*.[137]
|
||||
src/platform.hpp*
|
||||
src/stamp-h1
|
||||
local_lat
|
||||
local_thr
|
||||
remote_lat
|
||||
remote_thr
|
||||
inproc_lat
|
||||
inproc_thr
|
||||
!local_lat/
|
||||
!local_thr/
|
||||
!remote_lat/
|
||||
!remote_thr/
|
||||
!inproc_lat/
|
||||
!inproc_thr/
|
||||
doc/*.1
|
||||
doc/*.3
|
||||
doc/*.7
|
||||
doc/*.html
|
||||
doc/*.xml
|
||||
|
||||
# external libraries and release archive files
|
||||
doxygen/
|
||||
src/libzmq.pc
|
||||
bin/
|
||||
lib/
|
||||
obj/
|
||||
builds/android/prefix/
|
||||
packaging/nuget/*.nupkg
|
||||
foreign/openpgm/*
|
||||
!foreign/openpgm/*.tar.bz2
|
||||
!foreign/openpgm/*.tar.gz
|
||||
@ -125,5 +176,5 @@ foreign/openpgm/*
|
||||
zeromq-*.tar.gz
|
||||
zeromq-*.zip
|
||||
core
|
||||
|
||||
mybuild
|
||||
build
|
||||
test-suite.log
|
||||
|
@ -1,26 +0,0 @@
|
||||
workflow:
|
||||
steps:
|
||||
- branch_package:
|
||||
source_project: network:messaging:zeromq:git-draft
|
||||
source_package: libzmq
|
||||
target_project: network:messaging:zeromq:ci
|
||||
rebuild:
|
||||
steps:
|
||||
- trigger_services:
|
||||
project: network:messaging:zeromq:git-stable
|
||||
package: libzmq
|
||||
- trigger_services:
|
||||
project: network:messaging:zeromq:git-draft
|
||||
package: libzmq
|
||||
filters:
|
||||
event: push
|
||||
release:
|
||||
steps:
|
||||
- trigger_services:
|
||||
project: network:messaging:zeromq:release-stable
|
||||
package: libzmq
|
||||
- trigger_services:
|
||||
project: network:messaging:zeromq:release-draft
|
||||
package: libzmq
|
||||
filters:
|
||||
event: tag_push
|
@ -1,38 +0,0 @@
|
||||
#
|
||||
# libzmq readthedocs.io integration
|
||||
#
|
||||
# This configuration file is processed by readthedocs.io to rebuild the
|
||||
# libzmq documentation using Asciidoctor, see
|
||||
# https://docs.readthedocs.io/en/stable/build-customization.html#asciidoc
|
||||
|
||||
version: "2"
|
||||
|
||||
formats:
|
||||
- htmlzip
|
||||
|
||||
build:
|
||||
os: "ubuntu-22.04"
|
||||
tools:
|
||||
nodejs: "20"
|
||||
# NOTE: as of Nov 2023, build.apt_packages is NOT considered when using build.commands
|
||||
#apt_packages:
|
||||
# - automake
|
||||
# - autoconf
|
||||
# - cmake
|
||||
# - libtool
|
||||
commands:
|
||||
# install required tools
|
||||
- npm install -g asciidoctor
|
||||
|
||||
# HTML docs
|
||||
# ---------
|
||||
- doc/create_page_list.sh "$(pwd)/doc/__pagelist" "$(pwd)/doc"
|
||||
- asciidoctor --backend html --destination-dir $READTHEDOCS_OUTPUT/html --attribute stylesheet=asciidoctor.css --attribute zmq_version='4.3.6' --attribute zmq_pagelist_dir=$(pwd)/doc doc/*.adoc
|
||||
|
||||
# HTMLZIP docs
|
||||
# ------------
|
||||
# Note that for usability we make sure zip will create a zipfile containing just a flat list of HTML files;
|
||||
# to achieve that it's important to avoid storing absolute paths when invoking "zip", thus we use -j
|
||||
# Also note that the archive name should match exactly the project slug, "libzmq" in this case.
|
||||
- mkdir -p $READTHEDOCS_OUTPUT/htmlzip/
|
||||
- cd $READTHEDOCS_OUTPUT/html && zip -j ../htmlzip/libzmq.zip *.html
|
91
.travis.yml
91
.travis.yml
@ -4,13 +4,16 @@ language: c
|
||||
|
||||
os:
|
||||
- linux
|
||||
- osx
|
||||
|
||||
dist: bionic
|
||||
dist: trusty
|
||||
|
||||
cache: ccache
|
||||
|
||||
env:
|
||||
matrix:
|
||||
- BUILD_TYPE=default CURVE=tweetnacl DRAFT=enabled
|
||||
- BUILD_TYPE=cmake CURVE=tweetnacl
|
||||
- BUILD_TYPE=default
|
||||
# tokens to deploy releases on OBS and create/delete temporary branch on Github.
|
||||
# 1) Create a token on https://github.com/settings/tokens/new with "public_repo"
|
||||
@ -21,7 +24,91 @@ env:
|
||||
- secure: aaIs9Y44FYp9VFCqa6LLD4illBH4aUfbS0zzzbAQ5xJvD6NfBsMiKEIhf/kRNCHAtP+1VfQVOejTD6/i08ALsVr3cZD9oB/t7874tz2/jeZUIhRNo+1KwyaVqNg0yUSV6ASIoq4aOfuGnjBlezNQ8LQ2bjQB2m4Enl5wxoYcYdA=
|
||||
- secure: YFrcedBIKe0NR1WC6qQi9phZgtnzOiBIXm40TirvCtstV4eVnSouKgtQfLLArZ4o2tjflq4grQQNo1rJatvyi5YPOXsMcndsni18S+4Ffu8qbECdtPrK52vBweuf7q9oV9Ydax0Fm4bEqEMOZ2/mRBy3nK+mgsE3upeMwyWR0Zw=
|
||||
- secure: lbZSzmqN39QdJwewKOZgq/1ijPKuyx9MFrGzMqXj2+eOSlaZS/tNavHMdKJOev+qJGK9wxmwzxOxS10AiH+AvN7WBacXX4ZtudjScz2HKJRDWTKyzMbzyScq51afniItzrsm+Vo8NHkenNFkux0sSbh0aHlpkLwrGQu+WZWcDN4=
|
||||
- secure: "ZFL7hLJlGwYix8fF835OnQYakBt/o5iS7IfSW7el44ejEvGAOM9O5/ufxCcqSqn8Np7nOaM3RriAVTqWPZD6S7tMeflGTSGYHPYwWUc83z4rUPyG2FWVKXdB8ufpebAwu3hCgLiSmVeoQG47dl6xNk1oKCd+3UIjgz33u1Ecfps="
|
||||
|
||||
matrix:
|
||||
include:
|
||||
- env: BUILD_TYPE=default CURVE=tweetnacl IPv6=ON
|
||||
os: linux
|
||||
dist: precise
|
||||
sudo: false
|
||||
- env: BUILD_TYPE=coverage CURVE=tweetnacl DRAFT=enabled
|
||||
os: linux
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- lcov
|
||||
- env: BUILD_TYPE=valgrind CURVE=tweetnacl DRAFT=enabled
|
||||
os: linux
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- valgrind
|
||||
- env: BUILD_TYPE=default CURVE=libsodium GSSAPI=enabled PGM=enabled NORM=enabled
|
||||
os: linux
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- sourceline: 'deb http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/ ./'
|
||||
key_url: 'http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/Release.key'
|
||||
packages:
|
||||
- libkrb5-dev
|
||||
- libnorm-dev
|
||||
- libpgm-dev
|
||||
- libsodium-dev
|
||||
- asciidoc
|
||||
- xmlto
|
||||
- env: BUILD_TYPE=default CURVE=libsodium DRAFT=enabled GSSAPI=enabled PGM=enabled NORM=enabled TIPC=enabled
|
||||
os: linux
|
||||
sudo: required
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- sourceline: 'deb http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/ ./'
|
||||
key_url: 'http://download.opensuse.org/repositories/network:/messaging:/zeromq:/git-stable/xUbuntu_14.04/Release.key'
|
||||
packages:
|
||||
- libkrb5-dev
|
||||
- libnorm-dev
|
||||
- libpgm-dev
|
||||
- libsodium-dev
|
||||
- env: BUILD_TYPE=default CURVE=libsodium DRAFT=enabled
|
||||
os: osx
|
||||
- env: BUILD_TYPE=default CURVE=tweetnacl DRAFT=enabled ADDRESS_SANITIZER=enabled
|
||||
os: linux
|
||||
dist: trusty
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- sourceline: 'ppa:ubuntu-toolchain-r/test'
|
||||
packages:
|
||||
- g++-6
|
||||
- gcc-6
|
||||
- env: BUILD_TYPE=android CURVE=tweetnacl
|
||||
os: linux
|
||||
dist: trusty
|
||||
- env: BUILD_TYPE=cmake DO_CLANG_FORMAT_CHECK=1 CLANG_FORMAT=/usr/local/clang-5.0.0/bin/clang-format
|
||||
os: linux
|
||||
addons:
|
||||
apt:
|
||||
sources:
|
||||
- llvm-toolchain-trusty-5.0
|
||||
packages:
|
||||
- clang-5.0
|
||||
- env: BUILD_TYPE=default POLLER=poll
|
||||
os: linux
|
||||
- env: BUILD_TYPE=default POLLER=select
|
||||
os: linux
|
||||
|
||||
sudo: false
|
||||
|
||||
before_install:
|
||||
- if [ $TRAVIS_OS_NAME == "osx" -a $BUILD_TYPE == "android" ] ; then brew update; brew install binutils ; fi
|
||||
- if [ $TRAVIS_OS_NAME == "osx" -a $CURVE == "libsodium" ] ; then brew update; brew install libsodium ; fi
|
||||
|
||||
before_script:
|
||||
# ZMQ stress tests need more open socket (files) than the usual default
|
||||
# On OSX, it seems the way to set the max files limit is constantly changing, so
|
||||
# try to use all known knobs to ensure compatibility across various versions
|
||||
- if [ $TRAVIS_OS_NAME == "osx" ] ; then sudo sysctl -w kern.maxfiles=64000 ; sudo sysctl -w kern.maxfilesperproc=64000 ; sudo launchctl limit maxfiles 64000 64000 ; ulimit -n 64000; fi
|
||||
|
||||
# Build and check this project according to the BUILD_TYPE
|
||||
script: ./ci_build.sh
|
||||
|
4
AUTHORS
4
AUTHORS
@ -27,7 +27,6 @@ Bernd Prager
|
||||
Bob Beaty
|
||||
Brandon Carpenter
|
||||
Brett Cameron
|
||||
Brett Viren
|
||||
Brian Buchanan
|
||||
Burak Arslan
|
||||
Carl Clemens
|
||||
@ -70,8 +69,8 @@ Jon Dyte
|
||||
Kamil Shakirov
|
||||
Ken Steele
|
||||
Kouhei Sutou
|
||||
Laurent Alebarde
|
||||
Leonardo J. Consoni
|
||||
Lionel Flandrin
|
||||
Lourens Naudé
|
||||
Luca Boccassi
|
||||
Marc Rossi
|
||||
@ -120,7 +119,6 @@ Toralf Wittner
|
||||
Tore Halvorsen
|
||||
Trevor Bernard
|
||||
Vitaly Mayatskikh
|
||||
Yacheng Zhou
|
||||
|
||||
Credits
|
||||
=======
|
||||
|
2858
CMakeLists.txt
2858
CMakeLists.txt
File diff suppressed because it is too large
Load Diff
674
COPYING
Normal file
674
COPYING
Normal file
@ -0,0 +1,674 @@
|
||||
GNU GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
Preamble
|
||||
|
||||
The GNU General Public License is a free, copyleft license for
|
||||
software and other kinds of works.
|
||||
|
||||
The licenses for most software and other practical works are designed
|
||||
to take away your freedom to share and change the works. By contrast,
|
||||
the GNU General Public License is intended to guarantee your freedom to
|
||||
share and change all versions of a program--to make sure it remains free
|
||||
software for all its users. We, the Free Software Foundation, use the
|
||||
GNU General Public License for most of our software; it applies also to
|
||||
any other work released this way by its authors. You can apply it to
|
||||
your programs, too.
|
||||
|
||||
When we speak of free software, we are referring to freedom, not
|
||||
price. Our General Public Licenses are designed to make sure that you
|
||||
have the freedom to distribute copies of free software (and charge for
|
||||
them if you wish), that you receive source code or can get it if you
|
||||
want it, that you can change the software or use pieces of it in new
|
||||
free programs, and that you know you can do these things.
|
||||
|
||||
To protect your rights, we need to prevent others from denying you
|
||||
these rights or asking you to surrender the rights. Therefore, you have
|
||||
certain responsibilities if you distribute copies of the software, or if
|
||||
you modify it: responsibilities to respect the freedom of others.
|
||||
|
||||
For example, if you distribute copies of such a program, whether
|
||||
gratis or for a fee, you must pass on to the recipients the same
|
||||
freedoms that you received. You must make sure that they, too, receive
|
||||
or can get the source code. And you must show them these terms so they
|
||||
know their rights.
|
||||
|
||||
Developers that use the GNU GPL protect your rights with two steps:
|
||||
(1) assert copyright on the software, and (2) offer you this License
|
||||
giving you legal permission to copy, distribute and/or modify it.
|
||||
|
||||
For the developers' and authors' protection, the GPL clearly explains
|
||||
that there is no warranty for this free software. For both users' and
|
||||
authors' sake, the GPL requires that modified versions be marked as
|
||||
changed, so that their problems will not be attributed erroneously to
|
||||
authors of previous versions.
|
||||
|
||||
Some devices are designed to deny users access to install or run
|
||||
modified versions of the software inside them, although the manufacturer
|
||||
can do so. This is fundamentally incompatible with the aim of
|
||||
protecting users' freedom to change the software. The systematic
|
||||
pattern of such abuse occurs in the area of products for individuals to
|
||||
use, which is precisely where it is most unacceptable. Therefore, we
|
||||
have designed this version of the GPL to prohibit the practice for those
|
||||
products. If such problems arise substantially in other domains, we
|
||||
stand ready to extend this provision to those domains in future versions
|
||||
of the GPL, as needed to protect the freedom of users.
|
||||
|
||||
Finally, every program is threatened constantly by software patents.
|
||||
States should not allow patents to restrict development and use of
|
||||
software on general-purpose computers, but in those that do, we wish to
|
||||
avoid the special danger that patents applied to a free program could
|
||||
make it effectively proprietary. To prevent this, the GPL assures that
|
||||
patents cannot be used to render the program non-free.
|
||||
|
||||
The precise terms and conditions for copying, distribution and
|
||||
modification follow.
|
||||
|
||||
TERMS AND CONDITIONS
|
||||
|
||||
0. Definitions.
|
||||
|
||||
"This License" refers to version 3 of the GNU General Public License.
|
||||
|
||||
"Copyright" also means copyright-like laws that apply to other kinds of
|
||||
works, such as semiconductor masks.
|
||||
|
||||
"The Program" refers to any copyrightable work licensed under this
|
||||
License. Each licensee is addressed as "you". "Licensees" and
|
||||
"recipients" may be individuals or organizations.
|
||||
|
||||
To "modify" a work means to copy from or adapt all or part of the work
|
||||
in a fashion requiring copyright permission, other than the making of an
|
||||
exact copy. The resulting work is called a "modified version" of the
|
||||
earlier work or a work "based on" the earlier work.
|
||||
|
||||
A "covered work" means either the unmodified Program or a work based
|
||||
on the Program.
|
||||
|
||||
To "propagate" a work means to do anything with it that, without
|
||||
permission, would make you directly or secondarily liable for
|
||||
infringement under applicable copyright law, except executing it on a
|
||||
computer or modifying a private copy. Propagation includes copying,
|
||||
distribution (with or without modification), making available to the
|
||||
public, and in some countries other activities as well.
|
||||
|
||||
To "convey" a work means any kind of propagation that enables other
|
||||
parties to make or receive copies. Mere interaction with a user through
|
||||
a computer network, with no transfer of a copy, is not conveying.
|
||||
|
||||
An interactive user interface displays "Appropriate Legal Notices"
|
||||
to the extent that it includes a convenient and prominently visible
|
||||
feature that (1) displays an appropriate copyright notice, and (2)
|
||||
tells the user that there is no warranty for the work (except to the
|
||||
extent that warranties are provided), that licensees may convey the
|
||||
work under this License, and how to view a copy of this License. If
|
||||
the interface presents a list of user commands or options, such as a
|
||||
menu, a prominent item in the list meets this criterion.
|
||||
|
||||
1. Source Code.
|
||||
|
||||
The "source code" for a work means the preferred form of the work
|
||||
for making modifications to it. "Object code" means any non-source
|
||||
form of a work.
|
||||
|
||||
A "Standard Interface" means an interface that either is an official
|
||||
standard defined by a recognized standards body, or, in the case of
|
||||
interfaces specified for a particular programming language, one that
|
||||
is widely used among developers working in that language.
|
||||
|
||||
The "System Libraries" of an executable work include anything, other
|
||||
than the work as a whole, that (a) is included in the normal form of
|
||||
packaging a Major Component, but which is not part of that Major
|
||||
Component, and (b) serves only to enable use of the work with that
|
||||
Major Component, or to implement a Standard Interface for which an
|
||||
implementation is available to the public in source code form. A
|
||||
"Major Component", in this context, means a major essential component
|
||||
(kernel, window system, and so on) of the specific operating system
|
||||
(if any) on which the executable work runs, or a compiler used to
|
||||
produce the work, or an object code interpreter used to run it.
|
||||
|
||||
The "Corresponding Source" for a work in object code form means all
|
||||
the source code needed to generate, install, and (for an executable
|
||||
work) run the object code and to modify the work, including scripts to
|
||||
control those activities. However, it does not include the work's
|
||||
System Libraries, or general-purpose tools or generally available free
|
||||
programs which are used unmodified in performing those activities but
|
||||
which are not part of the work. For example, Corresponding Source
|
||||
includes interface definition files associated with source files for
|
||||
the work, and the source code for shared libraries and dynamically
|
||||
linked subprograms that the work is specifically designed to require,
|
||||
such as by intimate data communication or control flow between those
|
||||
subprograms and other parts of the work.
|
||||
|
||||
The Corresponding Source need not include anything that users
|
||||
can regenerate automatically from other parts of the Corresponding
|
||||
Source.
|
||||
|
||||
The Corresponding Source for a work in source code form is that
|
||||
same work.
|
||||
|
||||
2. Basic Permissions.
|
||||
|
||||
All rights granted under this License are granted for the term of
|
||||
copyright on the Program, and are irrevocable provided the stated
|
||||
conditions are met. This License explicitly affirms your unlimited
|
||||
permission to run the unmodified Program. The output from running a
|
||||
covered work is covered by this License only if the output, given its
|
||||
content, constitutes a covered work. This License acknowledges your
|
||||
rights of fair use or other equivalent, as provided by copyright law.
|
||||
|
||||
You may make, run and propagate covered works that you do not
|
||||
convey, without conditions so long as your license otherwise remains
|
||||
in force. You may convey covered works to others for the sole purpose
|
||||
of having them make modifications exclusively for you, or provide you
|
||||
with facilities for running those works, provided that you comply with
|
||||
the terms of this License in conveying all material for which you do
|
||||
not control copyright. Those thus making or running the covered works
|
||||
for you must do so exclusively on your behalf, under your direction
|
||||
and control, on terms that prohibit them from making any copies of
|
||||
your copyrighted material outside their relationship with you.
|
||||
|
||||
Conveying under any other circumstances is permitted solely under
|
||||
the conditions stated below. Sublicensing is not allowed; section 10
|
||||
makes it unnecessary.
|
||||
|
||||
3. Protecting Users' Legal Rights From Anti-Circumvention Law.
|
||||
|
||||
No covered work shall be deemed part of an effective technological
|
||||
measure under any applicable law fulfilling obligations under article
|
||||
11 of the WIPO copyright treaty adopted on 20 December 1996, or
|
||||
similar laws prohibiting or restricting circumvention of such
|
||||
measures.
|
||||
|
||||
When you convey a covered work, you waive any legal power to forbid
|
||||
circumvention of technological measures to the extent such circumvention
|
||||
is effected by exercising rights under this License with respect to
|
||||
the covered work, and you disclaim any intention to limit operation or
|
||||
modification of the work as a means of enforcing, against the work's
|
||||
users, your or third parties' legal rights to forbid circumvention of
|
||||
technological measures.
|
||||
|
||||
4. Conveying Verbatim Copies.
|
||||
|
||||
You may convey verbatim copies of the Program's source code as you
|
||||
receive it, in any medium, provided that you conspicuously and
|
||||
appropriately publish on each copy an appropriate copyright notice;
|
||||
keep intact all notices stating that this License and any
|
||||
non-permissive terms added in accord with section 7 apply to the code;
|
||||
keep intact all notices of the absence of any warranty; and give all
|
||||
recipients a copy of this License along with the Program.
|
||||
|
||||
You may charge any price or no price for each copy that you convey,
|
||||
and you may offer support or warranty protection for a fee.
|
||||
|
||||
5. Conveying Modified Source Versions.
|
||||
|
||||
You may convey a work based on the Program, or the modifications to
|
||||
produce it from the Program, in the form of source code under the
|
||||
terms of section 4, provided that you also meet all of these conditions:
|
||||
|
||||
a) The work must carry prominent notices stating that you modified
|
||||
it, and giving a relevant date.
|
||||
|
||||
b) The work must carry prominent notices stating that it is
|
||||
released under this License and any conditions added under section
|
||||
7. This requirement modifies the requirement in section 4 to
|
||||
"keep intact all notices".
|
||||
|
||||
c) You must license the entire work, as a whole, under this
|
||||
License to anyone who comes into possession of a copy. This
|
||||
License will therefore apply, along with any applicable section 7
|
||||
additional terms, to the whole of the work, and all its parts,
|
||||
regardless of how they are packaged. This License gives no
|
||||
permission to license the work in any other way, but it does not
|
||||
invalidate such permission if you have separately received it.
|
||||
|
||||
d) If the work has interactive user interfaces, each must display
|
||||
Appropriate Legal Notices; however, if the Program has interactive
|
||||
interfaces that do not display Appropriate Legal Notices, your
|
||||
work need not make them do so.
|
||||
|
||||
A compilation of a covered work with other separate and independent
|
||||
works, which are not by their nature extensions of the covered work,
|
||||
and which are not combined with it such as to form a larger program,
|
||||
in or on a volume of a storage or distribution medium, is called an
|
||||
"aggregate" if the compilation and its resulting copyright are not
|
||||
used to limit the access or legal rights of the compilation's users
|
||||
beyond what the individual works permit. Inclusion of a covered work
|
||||
in an aggregate does not cause this License to apply to the other
|
||||
parts of the aggregate.
|
||||
|
||||
6. Conveying Non-Source Forms.
|
||||
|
||||
You may convey a covered work in object code form under the terms
|
||||
of sections 4 and 5, provided that you also convey the
|
||||
machine-readable Corresponding Source under the terms of this License,
|
||||
in one of these ways:
|
||||
|
||||
a) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by the
|
||||
Corresponding Source fixed on a durable physical medium
|
||||
customarily used for software interchange.
|
||||
|
||||
b) Convey the object code in, or embodied in, a physical product
|
||||
(including a physical distribution medium), accompanied by a
|
||||
written offer, valid for at least three years and valid for as
|
||||
long as you offer spare parts or customer support for that product
|
||||
model, to give anyone who possesses the object code either (1) a
|
||||
copy of the Corresponding Source for all the software in the
|
||||
product that is covered by this License, on a durable physical
|
||||
medium customarily used for software interchange, for a price no
|
||||
more than your reasonable cost of physically performing this
|
||||
conveying of source, or (2) access to copy the
|
||||
Corresponding Source from a network server at no charge.
|
||||
|
||||
c) Convey individual copies of the object code with a copy of the
|
||||
written offer to provide the Corresponding Source. This
|
||||
alternative is allowed only occasionally and noncommercially, and
|
||||
only if you received the object code with such an offer, in accord
|
||||
with subsection 6b.
|
||||
|
||||
d) Convey the object code by offering access from a designated
|
||||
place (gratis or for a charge), and offer equivalent access to the
|
||||
Corresponding Source in the same way through the same place at no
|
||||
further charge. You need not require recipients to copy the
|
||||
Corresponding Source along with the object code. If the place to
|
||||
copy the object code is a network server, the Corresponding Source
|
||||
may be on a different server (operated by you or a third party)
|
||||
that supports equivalent copying facilities, provided you maintain
|
||||
clear directions next to the object code saying where to find the
|
||||
Corresponding Source. Regardless of what server hosts the
|
||||
Corresponding Source, you remain obligated to ensure that it is
|
||||
available for as long as needed to satisfy these requirements.
|
||||
|
||||
e) Convey the object code using peer-to-peer transmission, provided
|
||||
you inform other peers where the object code and Corresponding
|
||||
Source of the work are being offered to the general public at no
|
||||
charge under subsection 6d.
|
||||
|
||||
A separable portion of the object code, whose source code is excluded
|
||||
from the Corresponding Source as a System Library, need not be
|
||||
included in conveying the object code work.
|
||||
|
||||
A "User Product" is either (1) a "consumer product", which means any
|
||||
tangible personal property which is normally used for personal, family,
|
||||
or household purposes, or (2) anything designed or sold for incorporation
|
||||
into a dwelling. In determining whether a product is a consumer product,
|
||||
doubtful cases shall be resolved in favor of coverage. For a particular
|
||||
product received by a particular user, "normally used" refers to a
|
||||
typical or common use of that class of product, regardless of the status
|
||||
of the particular user or of the way in which the particular user
|
||||
actually uses, or expects or is expected to use, the product. A product
|
||||
is a consumer product regardless of whether the product has substantial
|
||||
commercial, industrial or non-consumer uses, unless such uses represent
|
||||
the only significant mode of use of the product.
|
||||
|
||||
"Installation Information" for a User Product means any methods,
|
||||
procedures, authorization keys, or other information required to install
|
||||
and execute modified versions of a covered work in that User Product from
|
||||
a modified version of its Corresponding Source. The information must
|
||||
suffice to ensure that the continued functioning of the modified object
|
||||
code is in no case prevented or interfered with solely because
|
||||
modification has been made.
|
||||
|
||||
If you convey an object code work under this section in, or with, or
|
||||
specifically for use in, a User Product, and the conveying occurs as
|
||||
part of a transaction in which the right of possession and use of the
|
||||
User Product is transferred to the recipient in perpetuity or for a
|
||||
fixed term (regardless of how the transaction is characterized), the
|
||||
Corresponding Source conveyed under this section must be accompanied
|
||||
by the Installation Information. But this requirement does not apply
|
||||
if neither you nor any third party retains the ability to install
|
||||
modified object code on the User Product (for example, the work has
|
||||
been installed in ROM).
|
||||
|
||||
The requirement to provide Installation Information does not include a
|
||||
requirement to continue to provide support service, warranty, or updates
|
||||
for a work that has been modified or installed by the recipient, or for
|
||||
the User Product in which it has been modified or installed. Access to a
|
||||
network may be denied when the modification itself materially and
|
||||
adversely affects the operation of the network or violates the rules and
|
||||
protocols for communication across the network.
|
||||
|
||||
Corresponding Source conveyed, and Installation Information provided,
|
||||
in accord with this section must be in a format that is publicly
|
||||
documented (and with an implementation available to the public in
|
||||
source code form), and must require no special password or key for
|
||||
unpacking, reading or copying.
|
||||
|
||||
7. Additional Terms.
|
||||
|
||||
"Additional permissions" are terms that supplement the terms of this
|
||||
License by making exceptions from one or more of its conditions.
|
||||
Additional permissions that are applicable to the entire Program shall
|
||||
be treated as though they were included in this License, to the extent
|
||||
that they are valid under applicable law. If additional permissions
|
||||
apply only to part of the Program, that part may be used separately
|
||||
under those permissions, but the entire Program remains governed by
|
||||
this License without regard to the additional permissions.
|
||||
|
||||
When you convey a copy of a covered work, you may at your option
|
||||
remove any additional permissions from that copy, or from any part of
|
||||
it. (Additional permissions may be written to require their own
|
||||
removal in certain cases when you modify the work.) You may place
|
||||
additional permissions on material, added by you to a covered work,
|
||||
for which you have or can give appropriate copyright permission.
|
||||
|
||||
Notwithstanding any other provision of this License, for material you
|
||||
add to a covered work, you may (if authorized by the copyright holders of
|
||||
that material) supplement the terms of this License with terms:
|
||||
|
||||
a) Disclaiming warranty or limiting liability differently from the
|
||||
terms of sections 15 and 16 of this License; or
|
||||
|
||||
b) Requiring preservation of specified reasonable legal notices or
|
||||
author attributions in that material or in the Appropriate Legal
|
||||
Notices displayed by works containing it; or
|
||||
|
||||
c) Prohibiting misrepresentation of the origin of that material, or
|
||||
requiring that modified versions of such material be marked in
|
||||
reasonable ways as different from the original version; or
|
||||
|
||||
d) Limiting the use for publicity purposes of names of licensors or
|
||||
authors of the material; or
|
||||
|
||||
e) Declining to grant rights under trademark law for use of some
|
||||
trade names, trademarks, or service marks; or
|
||||
|
||||
f) Requiring indemnification of licensors and authors of that
|
||||
material by anyone who conveys the material (or modified versions of
|
||||
it) with contractual assumptions of liability to the recipient, for
|
||||
any liability that these contractual assumptions directly impose on
|
||||
those licensors and authors.
|
||||
|
||||
All other non-permissive additional terms are considered "further
|
||||
restrictions" within the meaning of section 10. If the Program as you
|
||||
received it, or any part of it, contains a notice stating that it is
|
||||
governed by this License along with a term that is a further
|
||||
restriction, you may remove that term. If a license document contains
|
||||
a further restriction but permits relicensing or conveying under this
|
||||
License, you may add to a covered work material governed by the terms
|
||||
of that license document, provided that the further restriction does
|
||||
not survive such relicensing or conveying.
|
||||
|
||||
If you add terms to a covered work in accord with this section, you
|
||||
must place, in the relevant source files, a statement of the
|
||||
additional terms that apply to those files, or a notice indicating
|
||||
where to find the applicable terms.
|
||||
|
||||
Additional terms, permissive or non-permissive, may be stated in the
|
||||
form of a separately written license, or stated as exceptions;
|
||||
the above requirements apply either way.
|
||||
|
||||
8. Termination.
|
||||
|
||||
You may not propagate or modify a covered work except as expressly
|
||||
provided under this License. Any attempt otherwise to propagate or
|
||||
modify it is void, and will automatically terminate your rights under
|
||||
this License (including any patent licenses granted under the third
|
||||
paragraph of section 11).
|
||||
|
||||
However, if you cease all violation of this License, then your
|
||||
license from a particular copyright holder is reinstated (a)
|
||||
provisionally, unless and until the copyright holder explicitly and
|
||||
finally terminates your license, and (b) permanently, if the copyright
|
||||
holder fails to notify you of the violation by some reasonable means
|
||||
prior to 60 days after the cessation.
|
||||
|
||||
Moreover, your license from a particular copyright holder is
|
||||
reinstated permanently if the copyright holder notifies you of the
|
||||
violation by some reasonable means, this is the first time you have
|
||||
received notice of violation of this License (for any work) from that
|
||||
copyright holder, and you cure the violation prior to 30 days after
|
||||
your receipt of the notice.
|
||||
|
||||
Termination of your rights under this section does not terminate the
|
||||
licenses of parties who have received copies or rights from you under
|
||||
this License. If your rights have been terminated and not permanently
|
||||
reinstated, you do not qualify to receive new licenses for the same
|
||||
material under section 10.
|
||||
|
||||
9. Acceptance Not Required for Having Copies.
|
||||
|
||||
You are not required to accept this License in order to receive or
|
||||
run a copy of the Program. Ancillary propagation of a covered work
|
||||
occurring solely as a consequence of using peer-to-peer transmission
|
||||
to receive a copy likewise does not require acceptance. However,
|
||||
nothing other than this License grants you permission to propagate or
|
||||
modify any covered work. These actions infringe copyright if you do
|
||||
not accept this License. Therefore, by modifying or propagating a
|
||||
covered work, you indicate your acceptance of this License to do so.
|
||||
|
||||
10. Automatic Licensing of Downstream Recipients.
|
||||
|
||||
Each time you convey a covered work, the recipient automatically
|
||||
receives a license from the original licensors, to run, modify and
|
||||
propagate that work, subject to this License. You are not responsible
|
||||
for enforcing compliance by third parties with this License.
|
||||
|
||||
An "entity transaction" is a transaction transferring control of an
|
||||
organization, or substantially all assets of one, or subdividing an
|
||||
organization, or merging organizations. If propagation of a covered
|
||||
work results from an entity transaction, each party to that
|
||||
transaction who receives a copy of the work also receives whatever
|
||||
licenses to the work the party's predecessor in interest had or could
|
||||
give under the previous paragraph, plus a right to possession of the
|
||||
Corresponding Source of the work from the predecessor in interest, if
|
||||
the predecessor has it or can get it with reasonable efforts.
|
||||
|
||||
You may not impose any further restrictions on the exercise of the
|
||||
rights granted or affirmed under this License. For example, you may
|
||||
not impose a license fee, royalty, or other charge for exercise of
|
||||
rights granted under this License, and you may not initiate litigation
|
||||
(including a cross-claim or counterclaim in a lawsuit) alleging that
|
||||
any patent claim is infringed by making, using, selling, offering for
|
||||
sale, or importing the Program or any portion of it.
|
||||
|
||||
11. Patents.
|
||||
|
||||
A "contributor" is a copyright holder who authorizes use under this
|
||||
License of the Program or a work on which the Program is based. The
|
||||
work thus licensed is called the contributor's "contributor version".
|
||||
|
||||
A contributor's "essential patent claims" are all patent claims
|
||||
owned or controlled by the contributor, whether already acquired or
|
||||
hereafter acquired, that would be infringed by some manner, permitted
|
||||
by this License, of making, using, or selling its contributor version,
|
||||
but do not include claims that would be infringed only as a
|
||||
consequence of further modification of the contributor version. For
|
||||
purposes of this definition, "control" includes the right to grant
|
||||
patent sublicenses in a manner consistent with the requirements of
|
||||
this License.
|
||||
|
||||
Each contributor grants you a non-exclusive, worldwide, royalty-free
|
||||
patent license under the contributor's essential patent claims, to
|
||||
make, use, sell, offer for sale, import and otherwise run, modify and
|
||||
propagate the contents of its contributor version.
|
||||
|
||||
In the following three paragraphs, a "patent license" is any express
|
||||
agreement or commitment, however denominated, not to enforce a patent
|
||||
(such as an express permission to practice a patent or covenant not to
|
||||
sue for patent infringement). To "grant" such a patent license to a
|
||||
party means to make such an agreement or commitment not to enforce a
|
||||
patent against the party.
|
||||
|
||||
If you convey a covered work, knowingly relying on a patent license,
|
||||
and the Corresponding Source of the work is not available for anyone
|
||||
to copy, free of charge and under the terms of this License, through a
|
||||
publicly available network server or other readily accessible means,
|
||||
then you must either (1) cause the Corresponding Source to be so
|
||||
available, or (2) arrange to deprive yourself of the benefit of the
|
||||
patent license for this particular work, or (3) arrange, in a manner
|
||||
consistent with the requirements of this License, to extend the patent
|
||||
license to downstream recipients. "Knowingly relying" means you have
|
||||
actual knowledge that, but for the patent license, your conveying the
|
||||
covered work in a country, or your recipient's use of the covered work
|
||||
in a country, would infringe one or more identifiable patents in that
|
||||
country that you have reason to believe are valid.
|
||||
|
||||
If, pursuant to or in connection with a single transaction or
|
||||
arrangement, you convey, or propagate by procuring conveyance of, a
|
||||
covered work, and grant a patent license to some of the parties
|
||||
receiving the covered work authorizing them to use, propagate, modify
|
||||
or convey a specific copy of the covered work, then the patent license
|
||||
you grant is automatically extended to all recipients of the covered
|
||||
work and works based on it.
|
||||
|
||||
A patent license is "discriminatory" if it does not include within
|
||||
the scope of its coverage, prohibits the exercise of, or is
|
||||
conditioned on the non-exercise of one or more of the rights that are
|
||||
specifically granted under this License. You may not convey a covered
|
||||
work if you are a party to an arrangement with a third party that is
|
||||
in the business of distributing software, under which you make payment
|
||||
to the third party based on the extent of your activity of conveying
|
||||
the work, and under which the third party grants, to any of the
|
||||
parties who would receive the covered work from you, a discriminatory
|
||||
patent license (a) in connection with copies of the covered work
|
||||
conveyed by you (or copies made from those copies), or (b) primarily
|
||||
for and in connection with specific products or compilations that
|
||||
contain the covered work, unless you entered into that arrangement,
|
||||
or that patent license was granted, prior to 28 March 2007.
|
||||
|
||||
Nothing in this License shall be construed as excluding or limiting
|
||||
any implied license or other defenses to infringement that may
|
||||
otherwise be available to you under applicable patent law.
|
||||
|
||||
12. No Surrender of Others' Freedom.
|
||||
|
||||
If conditions are imposed on you (whether by court order, agreement or
|
||||
otherwise) that contradict the conditions of this License, they do not
|
||||
excuse you from the conditions of this License. If you cannot convey a
|
||||
covered work so as to satisfy simultaneously your obligations under this
|
||||
License and any other pertinent obligations, then as a consequence you may
|
||||
not convey it at all. For example, if you agree to terms that obligate you
|
||||
to collect a royalty for further conveying from those to whom you convey
|
||||
the Program, the only way you could satisfy both those terms and this
|
||||
License would be to refrain entirely from conveying the Program.
|
||||
|
||||
13. Use with the GNU Affero General Public License.
|
||||
|
||||
Notwithstanding any other provision of this License, you have
|
||||
permission to link or combine any covered work with a work licensed
|
||||
under version 3 of the GNU Affero General Public License into a single
|
||||
combined work, and to convey the resulting work. The terms of this
|
||||
License will continue to apply to the part which is the covered work,
|
||||
but the special requirements of the GNU Affero General Public License,
|
||||
section 13, concerning interaction through a network will apply to the
|
||||
combination as such.
|
||||
|
||||
14. Revised Versions of this License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions of
|
||||
the GNU General Public License from time to time. Such new versions will
|
||||
be similar in spirit to the present version, but may differ in detail to
|
||||
address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Program specifies that a certain numbered version of the GNU General
|
||||
Public License "or any later version" applies to it, you have the
|
||||
option of following the terms and conditions either of that numbered
|
||||
version or of any later version published by the Free Software
|
||||
Foundation. If the Program does not specify a version number of the
|
||||
GNU General Public License, you may choose any version ever published
|
||||
by the Free Software Foundation.
|
||||
|
||||
If the Program specifies that a proxy can decide which future
|
||||
versions of the GNU General Public License can be used, that proxy's
|
||||
public statement of acceptance of a version permanently authorizes you
|
||||
to choose that version for the Program.
|
||||
|
||||
Later license versions may give you additional or different
|
||||
permissions. However, no additional obligations are imposed on any
|
||||
author or copyright holder as a result of your choosing to follow a
|
||||
later version.
|
||||
|
||||
15. Disclaimer of Warranty.
|
||||
|
||||
THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY
|
||||
APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT
|
||||
HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY
|
||||
OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
|
||||
THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM
|
||||
IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF
|
||||
ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
|
||||
|
||||
16. Limitation of Liability.
|
||||
|
||||
IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING
|
||||
WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS
|
||||
THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
|
||||
GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE
|
||||
USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF
|
||||
DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD
|
||||
PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS),
|
||||
EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF
|
||||
SUCH DAMAGES.
|
||||
|
||||
17. Interpretation of Sections 15 and 16.
|
||||
|
||||
If the disclaimer of warranty and limitation of liability provided
|
||||
above cannot be given local legal effect according to their terms,
|
||||
reviewing courts shall apply local law that most closely approximates
|
||||
an absolute waiver of all civil liability in connection with the
|
||||
Program, unless a warranty or assumption of liability accompanies a
|
||||
copy of the Program in return for a fee.
|
||||
|
||||
END OF TERMS AND CONDITIONS
|
||||
|
||||
How to Apply These Terms to Your New Programs
|
||||
|
||||
If you develop a new program, and you want it to be of the greatest
|
||||
possible use to the public, the best way to achieve this is to make it
|
||||
free software which everyone can redistribute and change under these terms.
|
||||
|
||||
To do so, attach the following notices to the program. It is safest
|
||||
to attach them to the start of each source file to most effectively
|
||||
state the exclusion of warranty; and each file should have at least
|
||||
the "copyright" line and a pointer to where the full notice is found.
|
||||
|
||||
<one line to give the program's name and a brief idea of what it does.>
|
||||
Copyright (C) <year> <name of author>
|
||||
|
||||
This program is free software: you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation, either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
Also add information on how to contact you by electronic and paper mail.
|
||||
|
||||
If the program does terminal interaction, make it output a short
|
||||
notice like this when it starts in an interactive mode:
|
||||
|
||||
<program> Copyright (C) <year> <name of author>
|
||||
This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'.
|
||||
This is free software, and you are welcome to redistribute it
|
||||
under certain conditions; type `show c' for details.
|
||||
|
||||
The hypothetical commands `show w' and `show c' should show the appropriate
|
||||
parts of the General Public License. Of course, your program's commands
|
||||
might be different; for a GUI interface, you would use an "about box".
|
||||
|
||||
You should also get your employer (if you work as a programmer) or school,
|
||||
if any, to sign a "copyright disclaimer" for the program, if necessary.
|
||||
For more information on this, and how to apply and follow the GNU GPL, see
|
||||
<http://www.gnu.org/licenses/>.
|
||||
|
||||
The GNU General Public License does not permit incorporating your program
|
||||
into proprietary programs. If your program is a subroutine library, you
|
||||
may consider it more useful to permit linking proprietary applications with
|
||||
the library. If this is what you want to do, use the GNU Lesser General
|
||||
Public License instead of this License. But first, please read
|
||||
<http://www.gnu.org/philosophy/why-not-lgpl.html>.
|
181
COPYING.LESSER
Normal file
181
COPYING.LESSER
Normal file
@ -0,0 +1,181 @@
|
||||
GNU LESSER GENERAL PUBLIC LICENSE
|
||||
Version 3, 29 June 2007
|
||||
|
||||
Copyright (C) 2007 Free Software Foundation, Inc. <http://fsf.org/>
|
||||
Everyone is permitted to copy and distribute verbatim copies
|
||||
of this license document, but changing it is not allowed.
|
||||
|
||||
|
||||
This version of the GNU Lesser General Public License incorporates
|
||||
the terms and conditions of version 3 of the GNU General Public
|
||||
License, supplemented by the additional permissions listed below.
|
||||
|
||||
0. Additional Definitions.
|
||||
|
||||
As used herein, "this License" refers to version 3 of the GNU Lesser
|
||||
General Public License, and the "GNU GPL" refers to version 3 of the GNU
|
||||
General Public License.
|
||||
|
||||
"The Library" refers to a covered work governed by this License,
|
||||
other than an Application or a Combined Work as defined below.
|
||||
|
||||
An "Application" is any work that makes use of an interface provided
|
||||
by the Library, but which is not otherwise based on the Library.
|
||||
Defining a subclass of a class defined by the Library is deemed a mode
|
||||
of using an interface provided by the Library.
|
||||
|
||||
A "Combined Work" is a work produced by combining or linking an
|
||||
Application with the Library. The particular version of the Library
|
||||
with which the Combined Work was made is also called the "Linked
|
||||
Version".
|
||||
|
||||
The "Minimal Corresponding Source" for a Combined Work means the
|
||||
Corresponding Source for the Combined Work, excluding any source code
|
||||
for portions of the Combined Work that, considered in isolation, are
|
||||
based on the Application, and not on the Linked Version.
|
||||
|
||||
The "Corresponding Application Code" for a Combined Work means the
|
||||
object code and/or source code for the Application, including any data
|
||||
and utility programs needed for reproducing the Combined Work from the
|
||||
Application, but excluding the System Libraries of the Combined Work.
|
||||
|
||||
1. Exception to Section 3 of the GNU GPL.
|
||||
|
||||
You may convey a covered work under sections 3 and 4 of this License
|
||||
without being bound by section 3 of the GNU GPL.
|
||||
|
||||
2. Conveying Modified Versions.
|
||||
|
||||
If you modify a copy of the Library, and, in your modifications, a
|
||||
facility refers to a function or data to be supplied by an Application
|
||||
that uses the facility (other than as an argument passed when the
|
||||
facility is invoked), then you may convey a copy of the modified
|
||||
version:
|
||||
|
||||
a) under this License, provided that you make a good faith effort to
|
||||
ensure that, in the event an Application does not supply the
|
||||
function or data, the facility still operates, and performs
|
||||
whatever part of its purpose remains meaningful, or
|
||||
|
||||
b) under the GNU GPL, with none of the additional permissions of
|
||||
this License applicable to that copy.
|
||||
|
||||
3. Object Code Incorporating Material from Library Header Files.
|
||||
|
||||
The object code form of an Application may incorporate material from
|
||||
a header file that is part of the Library. You may convey such object
|
||||
code under terms of your choice, provided that, if the incorporated
|
||||
material is not limited to numerical parameters, data structure
|
||||
layouts and accessors, or small macros, inline functions and templates
|
||||
(ten or fewer lines in length), you do both of the following:
|
||||
|
||||
a) Give prominent notice with each copy of the object code that the
|
||||
Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the object code with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
4. Combined Works.
|
||||
|
||||
You may convey a Combined Work under terms of your choice that,
|
||||
taken together, effectively do not restrict modification of the
|
||||
portions of the Library contained in the Combined Work and reverse
|
||||
engineering for debugging such modifications, if you also do each of
|
||||
the following:
|
||||
|
||||
a) Give prominent notice with each copy of the Combined Work that
|
||||
the Library is used in it and that the Library and its use are
|
||||
covered by this License.
|
||||
|
||||
b) Accompany the Combined Work with a copy of the GNU GPL and this license
|
||||
document.
|
||||
|
||||
c) For a Combined Work that displays copyright notices during
|
||||
execution, include the copyright notice for the Library among
|
||||
these notices, as well as a reference directing the user to the
|
||||
copies of the GNU GPL and this license document.
|
||||
|
||||
d) Do one of the following:
|
||||
|
||||
0) Convey the Minimal Corresponding Source under the terms of this
|
||||
License, and the Corresponding Application Code in a form
|
||||
suitable for, and under terms that permit, the user to
|
||||
recombine or relink the Application with a modified version of
|
||||
the Linked Version to produce a modified Combined Work, in the
|
||||
manner specified by section 6 of the GNU GPL for conveying
|
||||
Corresponding Source.
|
||||
|
||||
1) Use a suitable shared library mechanism for linking with the
|
||||
Library. A suitable mechanism is one that (a) uses at run time
|
||||
a copy of the Library already present on the user's computer
|
||||
system, and (b) will operate properly with a modified version
|
||||
of the Library that is interface-compatible with the Linked
|
||||
Version.
|
||||
|
||||
e) Provide Installation Information, but only if you would otherwise
|
||||
be required to provide such information under section 6 of the
|
||||
GNU GPL, and only to the extent that such information is
|
||||
necessary to install and execute a modified version of the
|
||||
Combined Work produced by recombining or relinking the
|
||||
Application with a modified version of the Linked Version. (If
|
||||
you use option 4d0, the Installation Information must accompany
|
||||
the Minimal Corresponding Source and Corresponding Application
|
||||
Code. If you use option 4d1, you must provide the Installation
|
||||
Information in the manner specified by section 6 of the GNU GPL
|
||||
for conveying Corresponding Source.)
|
||||
|
||||
5. Combined Libraries.
|
||||
|
||||
You may place library facilities that are a work based on the
|
||||
Library side by side in a single library together with other library
|
||||
facilities that are not Applications and are not covered by this
|
||||
License, and convey such a combined library under terms of your
|
||||
choice, if you do both of the following:
|
||||
|
||||
a) Accompany the combined library with a copy of the same work based
|
||||
on the Library, uncombined with any other library facilities,
|
||||
conveyed under the terms of this License.
|
||||
|
||||
b) Give prominent notice with the combined library that part of it
|
||||
is a work based on the Library, and explaining where to find the
|
||||
accompanying uncombined form of the same work.
|
||||
|
||||
6. Revised Versions of the GNU Lesser General Public License.
|
||||
|
||||
The Free Software Foundation may publish revised and/or new versions
|
||||
of the GNU Lesser General Public License from time to time. Such new
|
||||
versions will be similar in spirit to the present version, but may
|
||||
differ in detail to address new problems or concerns.
|
||||
|
||||
Each version is given a distinguishing version number. If the
|
||||
Library as you received it specifies that a certain numbered version
|
||||
of the GNU Lesser General Public License "or any later version"
|
||||
applies to it, you have the option of following the terms and
|
||||
conditions either of that published version or of any later version
|
||||
published by the Free Software Foundation. If the Library as you
|
||||
received it does not specify a version number of the GNU Lesser
|
||||
General Public License, you may choose any version of the GNU Lesser
|
||||
General Public License ever published by the Free Software Foundation.
|
||||
|
||||
If the Library as you received it specifies that a proxy can decide
|
||||
whether future versions of the GNU Lesser General Public License shall
|
||||
apply, that proxy's public statement of acceptance of any version is
|
||||
permanent authorization for you to choose that version for the
|
||||
Library.
|
||||
|
||||
--------------------------------------------------------------------------------
|
||||
|
||||
SPECIAL EXCEPTION GRANTED BY COPYRIGHT HOLDERS
|
||||
|
||||
As a special exception, copyright holders give you permission to link this
|
||||
library with independent modules to produce an executable, regardless of
|
||||
the license terms of these independent modules, and to copy and distribute
|
||||
the resulting executable under terms of your choice, provided that you also
|
||||
meet, for each linked independent module, the terms and conditions of
|
||||
the license of that module. An independent module is a module which is not
|
||||
derived from or based on this library. If you modify this library, you must
|
||||
extend this exception to your version of the library.
|
||||
|
||||
Note: this exception relieves you of any obligations under sections 4 and 5
|
||||
of this license, and section 6 of the GNU General Public License.
|
41
Dockerfile
41
Dockerfile
@ -1,32 +1,11 @@
|
||||
FROM debian:buster-slim AS builder
|
||||
LABEL maintainer="ZeroMQ Project <zeromq@imatix.com>"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update -qq \
|
||||
&& apt-get install -qq --yes --no-install-recommends \
|
||||
autoconf \
|
||||
automake \
|
||||
build-essential \
|
||||
git \
|
||||
libkrb5-dev \
|
||||
libsodium-dev \
|
||||
libtool \
|
||||
pkg-config \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
WORKDIR /opt/libzmq
|
||||
COPY . .
|
||||
RUN ./autogen.sh \
|
||||
&& ./configure --prefix=/usr/local --with-libsodium --with-libgssapi_krb5 \
|
||||
&& make \
|
||||
&& make check \
|
||||
&& make install
|
||||
FROM ubuntu:14.04
|
||||
|
||||
FROM debian:buster-slim
|
||||
LABEL maintainer="ZeroMQ Project <zeromq@imatix.com>"
|
||||
ARG DEBIAN_FRONTEND=noninteractive
|
||||
RUN apt-get update -qq \
|
||||
&& apt-get install -qq --yes --no-install-recommends \
|
||||
libkrb5-dev \
|
||||
libsodium23 \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
COPY --from=builder /usr/local /usr/local
|
||||
RUN ldconfig && ldconfig -p | grep libzmq
|
||||
MAINTAINER ZeroMQ Project <zeromq@imatix.com>
|
||||
|
||||
RUN apt-get update
|
||||
RUN DEBIAN_FRONTEND=noninteractive apt-get install -y git build-essential libtool autoconf automake pkg-config unzip libkrb5-dev
|
||||
RUN cd /tmp && git clone git://github.com/jedisct1/libsodium.git && cd libsodium && git checkout e2a30a && ./autogen.sh && ./configure && make check && make install && ldconfig
|
||||
RUN cd /tmp && git clone --depth 1 git://github.com/zeromq/libzmq.git && cd libzmq && ./autogen.sh && ./configure && make
|
||||
# RUN cd /tmp/libzmq && make check
|
||||
RUN cd /tmp/libzmq && make install && ldconfig
|
||||
RUN rm /tmp/* -rf
|
||||
|
22
INSTALL
22
INSTALL
@ -39,7 +39,7 @@ cmake -G "NMake Makefiles" -D WITH_PERF_TOOL=OFF -D ZMQ_BUILD_TESTS=OFF
|
||||
Windows Builds
|
||||
==============
|
||||
|
||||
On Windows, use CMake for building, or for generating a Visual Studio solution file.
|
||||
For Windows building, see the libzmq\builds\msvc\readme.txt file.
|
||||
|
||||
The library can also be built for the Windows 10 UWP platform through CMake :
|
||||
cmake -H. -B<build dir> -G"Visual Studio 14 2015 Win64" \
|
||||
@ -48,7 +48,14 @@ cmake -H. -B<build dir> -G"Visual Studio 14 2015 Win64" \
|
||||
|
||||
In VS 2012 it is mandatory to increase the default stack size of 1 MB to
|
||||
at least 2 MB due to implementation of std::map intermittently requiring
|
||||
substantial amount of stack and causing stack overflow.
|
||||
substantial amount of stack and causing stack overflow. ZeroMQ generally
|
||||
needs more stack when FD_SETSIZE is higher.
|
||||
In all Windows builds it is recommended to start with at least 2 MB stack
|
||||
size unless application using ZeroMQ is using large number of threads which
|
||||
can cause substantial consumption of virtual address space, especially if
|
||||
32 bit build is used.
|
||||
Generally, programmer needs to tune the stack to balance memory consumption
|
||||
but never get into situation that stack is overflown.
|
||||
|
||||
Windows Builds - Static
|
||||
=======================
|
||||
@ -137,17 +144,6 @@ The simplest way to compile this package is:
|
||||
6. Often, you can also type `make uninstall' to remove the installed
|
||||
files again.
|
||||
|
||||
OS X Builds - Documentation
|
||||
===========================
|
||||
|
||||
Basic installation on OS X may fail in `Making all in doc' step. This
|
||||
error can be resolved by adding environment variable for shell.
|
||||
|
||||
export XML_CATALOG_FILES=/usr/local/etc/xml/catalog
|
||||
|
||||
Write command above in shell for instant resolve, or append command into
|
||||
shell profile file and reload for permanent resolve.
|
||||
|
||||
Compilers and Options
|
||||
=====================
|
||||
|
||||
|
2
Jenkinsfile
vendored
2
Jenkinsfile
vendored
@ -443,7 +443,7 @@ pipeline {
|
||||
echo "Used: myDEPLOY_JOB_NAME:${myDEPLOY_JOB_NAME} myDEPLOY_BRANCH_PATTERN:${myDEPLOY_BRANCH_PATTERN} myDEPLOY_REPORT_RESULT:${myDEPLOY_REPORT_RESULT}"
|
||||
if ( (myDEPLOY_JOB_NAME != "") && (myDEPLOY_BRANCH_PATTERN != "") ) {
|
||||
if ( env.BRANCH_NAME =~ myDEPLOY_BRANCH_PATTERN ) {
|
||||
def GIT_URL = sh(returnStdout: true, script: """git remote -v | grep -E '^origin' | awk '{print \$2}' | head -1""").trim()
|
||||
def GIT_URL = sh(returnStdout: true, script: """git remote -v | egrep '^origin' | awk '{print \$2}' | head -1""").trim()
|
||||
def GIT_COMMIT = sh(returnStdout: true, script: 'git rev-parse --verify HEAD').trim()
|
||||
def DIST_ARCHIVE = ""
|
||||
if ( params.DO_DIST_DOCS ) { DIST_ARCHIVE = env.BUILD_URL + "artifact/__dist.tar.gz" }
|
||||
|
373
LICENSE
373
LICENSE
@ -1,373 +0,0 @@
|
||||
Mozilla Public License Version 2.0
|
||||
==================================
|
||||
|
||||
1. Definitions
|
||||
--------------
|
||||
|
||||
1.1. "Contributor"
|
||||
means each individual or legal entity that creates, contributes to
|
||||
the creation of, or owns Covered Software.
|
||||
|
||||
1.2. "Contributor Version"
|
||||
means the combination of the Contributions of others (if any) used
|
||||
by a Contributor and that particular Contributor's Contribution.
|
||||
|
||||
1.3. "Contribution"
|
||||
means Covered Software of a particular Contributor.
|
||||
|
||||
1.4. "Covered Software"
|
||||
means Source Code Form to which the initial Contributor has attached
|
||||
the notice in Exhibit A, the Executable Form of such Source Code
|
||||
Form, and Modifications of such Source Code Form, in each case
|
||||
including portions thereof.
|
||||
|
||||
1.5. "Incompatible With Secondary Licenses"
|
||||
means
|
||||
|
||||
(a) that the initial Contributor has attached the notice described
|
||||
in Exhibit B to the Covered Software; or
|
||||
|
||||
(b) that the Covered Software was made available under the terms of
|
||||
version 1.1 or earlier of the License, but not also under the
|
||||
terms of a Secondary License.
|
||||
|
||||
1.6. "Executable Form"
|
||||
means any form of the work other than Source Code Form.
|
||||
|
||||
1.7. "Larger Work"
|
||||
means a work that combines Covered Software with other material, in
|
||||
a separate file or files, that is not Covered Software.
|
||||
|
||||
1.8. "License"
|
||||
means this document.
|
||||
|
||||
1.9. "Licensable"
|
||||
means having the right to grant, to the maximum extent possible,
|
||||
whether at the time of the initial grant or subsequently, any and
|
||||
all of the rights conveyed by this License.
|
||||
|
||||
1.10. "Modifications"
|
||||
means any of the following:
|
||||
|
||||
(a) any file in Source Code Form that results from an addition to,
|
||||
deletion from, or modification of the contents of Covered
|
||||
Software; or
|
||||
|
||||
(b) any new file in Source Code Form that contains any Covered
|
||||
Software.
|
||||
|
||||
1.11. "Patent Claims" of a Contributor
|
||||
means any patent claim(s), including without limitation, method,
|
||||
process, and apparatus claims, in any patent Licensable by such
|
||||
Contributor that would be infringed, but for the grant of the
|
||||
License, by the making, using, selling, offering for sale, having
|
||||
made, import, or transfer of either its Contributions or its
|
||||
Contributor Version.
|
||||
|
||||
1.12. "Secondary License"
|
||||
means either the GNU General Public License, Version 2.0, the GNU
|
||||
Lesser General Public License, Version 2.1, the GNU Affero General
|
||||
Public License, Version 3.0, or any later versions of those
|
||||
licenses.
|
||||
|
||||
1.13. "Source Code Form"
|
||||
means the form of the work preferred for making modifications.
|
||||
|
||||
1.14. "You" (or "Your")
|
||||
means an individual or a legal entity exercising rights under this
|
||||
License. For legal entities, "You" includes any entity that
|
||||
controls, is controlled by, or is under common control with You. For
|
||||
purposes of this definition, "control" means (a) the power, direct
|
||||
or indirect, to cause the direction or management of such entity,
|
||||
whether by contract or otherwise, or (b) ownership of more than
|
||||
fifty percent (50%) of the outstanding shares or beneficial
|
||||
ownership of such entity.
|
||||
|
||||
2. License Grants and Conditions
|
||||
--------------------------------
|
||||
|
||||
2.1. Grants
|
||||
|
||||
Each Contributor hereby grants You a world-wide, royalty-free,
|
||||
non-exclusive license:
|
||||
|
||||
(a) under intellectual property rights (other than patent or trademark)
|
||||
Licensable by such Contributor to use, reproduce, make available,
|
||||
modify, display, perform, distribute, and otherwise exploit its
|
||||
Contributions, either on an unmodified basis, with Modifications, or
|
||||
as part of a Larger Work; and
|
||||
|
||||
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
||||
for sale, have made, import, and otherwise transfer either its
|
||||
Contributions or its Contributor Version.
|
||||
|
||||
2.2. Effective Date
|
||||
|
||||
The licenses granted in Section 2.1 with respect to any Contribution
|
||||
become effective for each Contribution on the date the Contributor first
|
||||
distributes such Contribution.
|
||||
|
||||
2.3. Limitations on Grant Scope
|
||||
|
||||
The licenses granted in this Section 2 are the only rights granted under
|
||||
this License. No additional rights or licenses will be implied from the
|
||||
distribution or licensing of Covered Software under this License.
|
||||
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
||||
Contributor:
|
||||
|
||||
(a) for any code that a Contributor has removed from Covered Software;
|
||||
or
|
||||
|
||||
(b) for infringements caused by: (i) Your and any other third party's
|
||||
modifications of Covered Software, or (ii) the combination of its
|
||||
Contributions with other software (except as part of its Contributor
|
||||
Version); or
|
||||
|
||||
(c) under Patent Claims infringed by Covered Software in the absence of
|
||||
its Contributions.
|
||||
|
||||
This License does not grant any rights in the trademarks, service marks,
|
||||
or logos of any Contributor (except as may be necessary to comply with
|
||||
the notice requirements in Section 3.4).
|
||||
|
||||
2.4. Subsequent Licenses
|
||||
|
||||
No Contributor makes additional grants as a result of Your choice to
|
||||
distribute the Covered Software under a subsequent version of this
|
||||
License (see Section 10.2) or under the terms of a Secondary License (if
|
||||
permitted under the terms of Section 3.3).
|
||||
|
||||
2.5. Representation
|
||||
|
||||
Each Contributor represents that the Contributor believes its
|
||||
Contributions are its original creation(s) or it has sufficient rights
|
||||
to grant the rights to its Contributions conveyed by this License.
|
||||
|
||||
2.6. Fair Use
|
||||
|
||||
This License is not intended to limit any rights You have under
|
||||
applicable copyright doctrines of fair use, fair dealing, or other
|
||||
equivalents.
|
||||
|
||||
2.7. Conditions
|
||||
|
||||
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
||||
in Section 2.1.
|
||||
|
||||
3. Responsibilities
|
||||
-------------------
|
||||
|
||||
3.1. Distribution of Source Form
|
||||
|
||||
All distribution of Covered Software in Source Code Form, including any
|
||||
Modifications that You create or to which You contribute, must be under
|
||||
the terms of this License. You must inform recipients that the Source
|
||||
Code Form of the Covered Software is governed by the terms of this
|
||||
License, and how they can obtain a copy of this License. You may not
|
||||
attempt to alter or restrict the recipients' rights in the Source Code
|
||||
Form.
|
||||
|
||||
3.2. Distribution of Executable Form
|
||||
|
||||
If You distribute Covered Software in Executable Form then:
|
||||
|
||||
(a) such Covered Software must also be made available in Source Code
|
||||
Form, as described in Section 3.1, and You must inform recipients of
|
||||
the Executable Form how they can obtain a copy of such Source Code
|
||||
Form by reasonable means in a timely manner, at a charge no more
|
||||
than the cost of distribution to the recipient; and
|
||||
|
||||
(b) You may distribute such Executable Form under the terms of this
|
||||
License, or sublicense it under different terms, provided that the
|
||||
license for the Executable Form does not attempt to limit or alter
|
||||
the recipients' rights in the Source Code Form under this License.
|
||||
|
||||
3.3. Distribution of a Larger Work
|
||||
|
||||
You may create and distribute a Larger Work under terms of Your choice,
|
||||
provided that You also comply with the requirements of this License for
|
||||
the Covered Software. If the Larger Work is a combination of Covered
|
||||
Software with a work governed by one or more Secondary Licenses, and the
|
||||
Covered Software is not Incompatible With Secondary Licenses, this
|
||||
License permits You to additionally distribute such Covered Software
|
||||
under the terms of such Secondary License(s), so that the recipient of
|
||||
the Larger Work may, at their option, further distribute the Covered
|
||||
Software under the terms of either this License or such Secondary
|
||||
License(s).
|
||||
|
||||
3.4. Notices
|
||||
|
||||
You may not remove or alter the substance of any license notices
|
||||
(including copyright notices, patent notices, disclaimers of warranty,
|
||||
or limitations of liability) contained within the Source Code Form of
|
||||
the Covered Software, except that You may alter any license notices to
|
||||
the extent required to remedy known factual inaccuracies.
|
||||
|
||||
3.5. Application of Additional Terms
|
||||
|
||||
You may choose to offer, and to charge a fee for, warranty, support,
|
||||
indemnity or liability obligations to one or more recipients of Covered
|
||||
Software. However, You may do so only on Your own behalf, and not on
|
||||
behalf of any Contributor. You must make it absolutely clear that any
|
||||
such warranty, support, indemnity, or liability obligation is offered by
|
||||
You alone, and You hereby agree to indemnify every Contributor for any
|
||||
liability incurred by such Contributor as a result of warranty, support,
|
||||
indemnity or liability terms You offer. You may include additional
|
||||
disclaimers of warranty and limitations of liability specific to any
|
||||
jurisdiction.
|
||||
|
||||
4. Inability to Comply Due to Statute or Regulation
|
||||
---------------------------------------------------
|
||||
|
||||
If it is impossible for You to comply with any of the terms of this
|
||||
License with respect to some or all of the Covered Software due to
|
||||
statute, judicial order, or regulation then You must: (a) comply with
|
||||
the terms of this License to the maximum extent possible; and (b)
|
||||
describe the limitations and the code they affect. Such description must
|
||||
be placed in a text file included with all distributions of the Covered
|
||||
Software under this License. Except to the extent prohibited by statute
|
||||
or regulation, such description must be sufficiently detailed for a
|
||||
recipient of ordinary skill to be able to understand it.
|
||||
|
||||
5. Termination
|
||||
--------------
|
||||
|
||||
5.1. The rights granted under this License will terminate automatically
|
||||
if You fail to comply with any of its terms. However, if You become
|
||||
compliant, then the rights granted under this License from a particular
|
||||
Contributor are reinstated (a) provisionally, unless and until such
|
||||
Contributor explicitly and finally terminates Your grants, and (b) on an
|
||||
ongoing basis, if such Contributor fails to notify You of the
|
||||
non-compliance by some reasonable means prior to 60 days after You have
|
||||
come back into compliance. Moreover, Your grants from a particular
|
||||
Contributor are reinstated on an ongoing basis if such Contributor
|
||||
notifies You of the non-compliance by some reasonable means, this is the
|
||||
first time You have received notice of non-compliance with this License
|
||||
from such Contributor, and You become compliant prior to 30 days after
|
||||
Your receipt of the notice.
|
||||
|
||||
5.2. If You initiate litigation against any entity by asserting a patent
|
||||
infringement claim (excluding declaratory judgment actions,
|
||||
counter-claims, and cross-claims) alleging that a Contributor Version
|
||||
directly or indirectly infringes any patent, then the rights granted to
|
||||
You by any and all Contributors for the Covered Software under Section
|
||||
2.1 of this License shall terminate.
|
||||
|
||||
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
||||
end user license agreements (excluding distributors and resellers) which
|
||||
have been validly granted by You or Your distributors under this License
|
||||
prior to termination shall survive termination.
|
||||
|
||||
************************************************************************
|
||||
* *
|
||||
* 6. Disclaimer of Warranty *
|
||||
* ------------------------- *
|
||||
* *
|
||||
* Covered Software is provided under this License on an "as is" *
|
||||
* basis, without warranty of any kind, either expressed, implied, or *
|
||||
* statutory, including, without limitation, warranties that the *
|
||||
* Covered Software is free of defects, merchantable, fit for a *
|
||||
* particular purpose or non-infringing. The entire risk as to the *
|
||||
* quality and performance of the Covered Software is with You. *
|
||||
* Should any Covered Software prove defective in any respect, You *
|
||||
* (not any Contributor) assume the cost of any necessary servicing, *
|
||||
* repair, or correction. This disclaimer of warranty constitutes an *
|
||||
* essential part of this License. No use of any Covered Software is *
|
||||
* authorized under this License except under this disclaimer. *
|
||||
* *
|
||||
************************************************************************
|
||||
|
||||
************************************************************************
|
||||
* *
|
||||
* 7. Limitation of Liability *
|
||||
* -------------------------- *
|
||||
* *
|
||||
* Under no circumstances and under no legal theory, whether tort *
|
||||
* (including negligence), contract, or otherwise, shall any *
|
||||
* Contributor, or anyone who distributes Covered Software as *
|
||||
* permitted above, be liable to You for any direct, indirect, *
|
||||
* special, incidental, or consequential damages of any character *
|
||||
* including, without limitation, damages for lost profits, loss of *
|
||||
* goodwill, work stoppage, computer failure or malfunction, or any *
|
||||
* and all other commercial damages or losses, even if such party *
|
||||
* shall have been informed of the possibility of such damages. This *
|
||||
* limitation of liability shall not apply to liability for death or *
|
||||
* personal injury resulting from such party's negligence to the *
|
||||
* extent applicable law prohibits such limitation. Some *
|
||||
* jurisdictions do not allow the exclusion or limitation of *
|
||||
* incidental or consequential damages, so this exclusion and *
|
||||
* limitation may not apply to You. *
|
||||
* *
|
||||
************************************************************************
|
||||
|
||||
8. Litigation
|
||||
-------------
|
||||
|
||||
Any litigation relating to this License may be brought only in the
|
||||
courts of a jurisdiction where the defendant maintains its principal
|
||||
place of business and such litigation shall be governed by laws of that
|
||||
jurisdiction, without reference to its conflict-of-law provisions.
|
||||
Nothing in this Section shall prevent a party's ability to bring
|
||||
cross-claims or counter-claims.
|
||||
|
||||
9. Miscellaneous
|
||||
----------------
|
||||
|
||||
This License represents the complete agreement concerning the subject
|
||||
matter hereof. If any provision of this License is held to be
|
||||
unenforceable, such provision shall be reformed only to the extent
|
||||
necessary to make it enforceable. Any law or regulation which provides
|
||||
that the language of a contract shall be construed against the drafter
|
||||
shall not be used to construe this License against a Contributor.
|
||||
|
||||
10. Versions of the License
|
||||
---------------------------
|
||||
|
||||
10.1. New Versions
|
||||
|
||||
Mozilla Foundation is the license steward. Except as provided in Section
|
||||
10.3, no one other than the license steward has the right to modify or
|
||||
publish new versions of this License. Each version will be given a
|
||||
distinguishing version number.
|
||||
|
||||
10.2. Effect of New Versions
|
||||
|
||||
You may distribute the Covered Software under the terms of the version
|
||||
of the License under which You originally received the Covered Software,
|
||||
or under the terms of any subsequent version published by the license
|
||||
steward.
|
||||
|
||||
10.3. Modified Versions
|
||||
|
||||
If you create software not governed by this License, and you want to
|
||||
create a new license for such software, you may create and use a
|
||||
modified version of this License if you rename the license and remove
|
||||
any references to the name of the license steward (except to note that
|
||||
such modified license differs from this License).
|
||||
|
||||
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
||||
Licenses
|
||||
|
||||
If You choose to distribute Source Code Form that is Incompatible With
|
||||
Secondary Licenses under the terms of this version of the License, the
|
||||
notice described in Exhibit B of this License must be attached.
|
||||
|
||||
Exhibit A - Source Code Form License Notice
|
||||
-------------------------------------------
|
||||
|
||||
This Source Code Form is subject to the terms of the Mozilla Public
|
||||
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||
|
||||
If it is not possible or desirable to put the notice in a particular
|
||||
file, then You may include the notice in a location (such as a LICENSE
|
||||
file in a relevant directory) where a recipient would be likely to look
|
||||
for such a notice.
|
||||
|
||||
You may add additional accurate notices of copyright ownership.
|
||||
|
||||
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
||||
---------------------------------------------------------
|
||||
|
||||
This Source Code Form is "Incompatible With Secondary Licenses", as
|
||||
defined by the Mozilla Public License, v. 2.0.
|
964
Makefile.am
Executable file → Normal file
964
Makefile.am
Executable file → Normal file
File diff suppressed because it is too large
Load Diff
571
NEWS
571
NEWS
@ -1,574 +1,3 @@
|
||||
0MQ version 4.3.5 stable, released on 2023/10/09
|
||||
================================================
|
||||
|
||||
* Relicensing from LGPL-3.0+ (with custom exceptions) to MPL-2.0 is now complete.
|
||||
libzmq is now distributed under the Mozilla Public License 2.0. Relicensing
|
||||
grants have been collected from all relevant authors, and some functionality
|
||||
has been clean-room reimplemented where that was not possible. In layman terms,
|
||||
the new license provides the same rights and obligations as before. Source
|
||||
files are now tagged using the SPDX license identifier format.
|
||||
Details of the relicensing process can be seen at:
|
||||
https://github.com/zeromq/libzmq/issues/2376
|
||||
Relicensing grants have been archived at:
|
||||
https://github.com/rlenferink/libzmq-relicense
|
||||
A special thanks to everybody who helped with this long and difficult task,
|
||||
with the process, the reimplementations, the collections and everything else.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) socket options:
|
||||
- ZMQ_BUSY_POLL will set the SO_BUSY_POLL socket option on the underlying
|
||||
sockets, if it is supported.
|
||||
- ZMQ_HICCUP_MSG will send a message when the peer has been disconnected.
|
||||
- ZMQ_XSUB_VERBOSE_UNSUBSCRIBE will configure a socket to pass all
|
||||
unsubscription messages, including duplicated ones.
|
||||
- ZMQ_TOPICS_COUNT will return the number of subscribed topics on a
|
||||
PUB/SUB socket.
|
||||
- ZMQ_NORM_MODE, ZMQ_NORM_UNICAST_NACK, ZMQ_NORM_BUFFER_SIZE,
|
||||
ZMQ_NORM_SEGMENT_SIZE, ZMQ_NORM_BLOCK_SIZE, ZMQ_NORM_NUM_PARITY,
|
||||
ZMQ_NORM_NUM_AUTOPARITY and ZMQ_NORM_PUSH to control various aspect of
|
||||
NORM sockets.
|
||||
See doc/zmq_setsockopt.txt and doc/zmq_getsockopt.txt for details.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) zmq_ppoll APIs was added that differs from
|
||||
zmq_poll in the same way that ppoll differs from poll.
|
||||
See doc/zmq_ppoll.txt for details.
|
||||
|
||||
* Various bug fixes and performance improvements.
|
||||
|
||||
|
||||
0MQ version 4.3.4 stable, released on 2021/01/17
|
||||
================================================
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) socket option:
|
||||
- ZMQ_PRIORITY will set the SO_PRIORITY socket option on the underlying
|
||||
sockets. Only supported on Linux.
|
||||
See doc/zmq_setsockopt.txt and doc/zmq_getsockopt.txt for details.
|
||||
|
||||
* Fixed #4113 - compilation errors on kFreeBSD and GNU/Hurd
|
||||
|
||||
* Fixed #4086 - excessive amount of socket files left behind in Windows TMP
|
||||
directory
|
||||
|
||||
* Fixed #4108 - regression that breaks using IPv6 link-local addresses on Linux
|
||||
|
||||
* Fixed #4078 - compilation errors on Android
|
||||
|
||||
* Fixed #4074 - compilation error with ulibc and libbsd
|
||||
|
||||
* Fixed #4060 - stack overflow on Windows x64
|
||||
|
||||
* Fixed #4051 - various compilation errors on Windows ARM 32bit
|
||||
|
||||
* Fixed #4043 - various compilation warnings with XCode
|
||||
|
||||
* Fixed #4038 - return value of zmq_ctx_get changed unintentionally
|
||||
|
||||
|
||||
0MQ version 4.3.3 stable, released on 2020/09/07
|
||||
================================================
|
||||
|
||||
* Security advisories:
|
||||
* CVE-2020-15166: Denial-of-Service on CURVE/ZAP-protected servers by
|
||||
unauthenticated clients.
|
||||
If a raw TCP socket is opened and connected to an endpoint that is fully
|
||||
configured with CURVE/ZAP, legitimate clients will not be able to exchange
|
||||
any message. Handshakes complete successfully, and messages are delivered to
|
||||
the library, but the server application never receives them.
|
||||
For more information see the security advisory:
|
||||
https://github.com/zeromq/libzmq/security/advisories/GHSA-25wp-cf8g-938m
|
||||
* Stack overflow on server running PUB/XPUB socket (CURVE disabled).
|
||||
The PUB/XPUB subscription store (mtrie) is traversed using recursive
|
||||
function calls. In the remove (unsubscription) case, the recursive calls are
|
||||
NOT tail calls, so even with optimizations the stack grows linearly with the
|
||||
length of a subscription topic. Topics are under the control of remote
|
||||
clients - they can send a subscription to arbitrary length topics. An
|
||||
attacker can thus cause a server to create an mtrie sufficiently large such
|
||||
that, when unsubscribing, traversal will cause a stack overflow.
|
||||
For more information see the security advisory:
|
||||
https://github.com/zeromq/libzmq/security/advisories/GHSA-qq65-x72m-9wr8
|
||||
* Memory leak in PUB server induced by malicious client(s) without CURVE/ZAP.
|
||||
Messages with metadata are never processed by PUB sockets, but the metadata
|
||||
is kept referenced in the PUB object and never freed.
|
||||
For more information see the security advisory:
|
||||
https://github.com/zeromq/libzmq/security/advisories/GHSA-4p5v-h92w-6wxw
|
||||
* Memory leak in client induced by malicious server(s) without CURVE/ZAP.
|
||||
When a pipe processes a delimiter and is already not in active state but
|
||||
still has an unfinished message, the message is leaked.
|
||||
For more information see the security advisory:
|
||||
https://github.com/zeromq/libzmq/security/advisories/GHSA-wfr2-29gj-5w87
|
||||
* Heap overflow when receiving malformed ZMTP v1 packets (CURVE disabled).
|
||||
By crafting a packet which is not valid ZMTP v2/v3, and which has two
|
||||
messages larger than 8192 bytes, the decoder can be tricked into changing
|
||||
the recorded size of the 8192 bytes static buffer, which then gets overflown
|
||||
by the next message. The content that gets written in the overflown memory
|
||||
is entirely decided by the sender.
|
||||
For more information see the security advisory:
|
||||
https://github.com/zeromq/libzmq/security/advisories/GHSA-fc3w-qxf5-7hp6
|
||||
|
||||
* Note for packagers: an external, self-contained sha1 library is now
|
||||
included in the source tree under external/sha1/ - it is licensed
|
||||
under BSD-3-Clause and thus it is fully compatible with libzmq's
|
||||
license.
|
||||
It is only used if WebSockets support is enabled, and if neither GnuTLS nor
|
||||
NSS are available.
|
||||
|
||||
* Note for packagers: an internal reimplementation of strlcpy is now included,
|
||||
for wider platform compatibility.
|
||||
libbsd can be used and is enabled by default if available instead of the
|
||||
internal implementation, for better security maintenance in distros.
|
||||
|
||||
* Note for packagers: ZeroMQConfig.cmake is now installed in the arch-dependent
|
||||
subdirectory - eg: /usr/lib/x86_64-linux-gnu/cmake/
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) socket type:
|
||||
- ZMQ_CHANNEL is a thread-safe alternative to ZMQ_PAIR.
|
||||
See doc/zmq_socket.txt for details.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) socket option:
|
||||
- ZMQ_ONLY_FIRST_SUBSCRIBE will cause only the first part of a multipart
|
||||
message to be processed as a subscribe/unsubscribe message, and the rest
|
||||
will be forwarded as user data to the application.
|
||||
- ZMQ_RECONNECT_STOP will cause a connecting socket to stop trying to
|
||||
reconnect in specific circumstances. See the manpage for details.
|
||||
- ZMQ_HELLO_MSG to set a message that will be automatically sent to a new
|
||||
connection.
|
||||
- ZMQ_DISCONNECT_MSG to set a message that will be automatically received when
|
||||
a peer disconnects.
|
||||
See doc/zmq_setsockopt.txt and doc/zmq_getsockopt.txt for details.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) zmq_ctx_get_ext/zmq_ctx_set_ext APIs were added
|
||||
to allow enhancing the context options with variable data inputs.
|
||||
See doc/zmq_ctx_get_ext.txt and doc/zmq_ctx_set_ext.txt for details.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) transport options WS and WSS added for support
|
||||
of WebSockets (and secure WebSockets via TLS) via the ZWS 2.0 protocol.
|
||||
WSS requires the GnuTLS library for TLS support. ZMQ_WSS_ specific socket
|
||||
options were added to support TLS.
|
||||
WebSockets support is disabled by default if DRAFT APIs are disabled.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) socket type, PEER, which is thread safe and a
|
||||
related zmq_connect_peer function which atomically and thread-safely connects
|
||||
and returns a routing-id.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) zmq_msg_init_buffer API was added to allow
|
||||
the construction of a message by copying from an existing buffer.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) zmq_poller_size API was added to allow querying
|
||||
the number of sockets/fds registered in a zmq_poller.
|
||||
|
||||
* ZMTP 3.1 peers will receive subscribe/cancel on PUB/SUB via commands rather
|
||||
than using the first byte of the payload.
|
||||
|
||||
* zmq_z85_decode now checks that the input string's length is at least 5 characters
|
||||
and always a multiple of 5 as per API specification.
|
||||
|
||||
* Fixed #3566 - malformed CURVE message can cause memory leak
|
||||
|
||||
* Fixed #3567 - missing ZeroMQ_INCLUDE_DIR in ZeroMQConfig.cmake when only
|
||||
static lib is built
|
||||
|
||||
* Fixed #3576 - CURVE plaintext secrets now stored in libsodium's secure memory
|
||||
|
||||
* Fixed #3588 - install debug libraries for debug msvc builds with CMake
|
||||
|
||||
* Fixed #3591 - incorrect ZMQ_MAX_SOCKETS default value in doc
|
||||
|
||||
* Fixed #3594 - fixed stream_engine use after free due to concurrent heartbeats
|
||||
|
||||
* Fixed #3586 - error when compiling with MinGW due to usage of MS-specific
|
||||
__except keyword
|
||||
|
||||
* Fixed #3603 - fixed CMake build on SL6.9
|
||||
|
||||
* Fixed #3607 - added scripts to ease performance graph generation
|
||||
|
||||
* Fixed #3608 - fix for IPv4 mapping not supported in DragonFlyBSD
|
||||
|
||||
* Fixed #3636 - added ENABLE_PRECOMPILED CMake option to fix build with Ninja
|
||||
|
||||
* Fixed #2862 - UDP engine aborts on networking-related errors from socket
|
||||
syscalls
|
||||
|
||||
* Fixed #3656 - segfault on sending data from XSUB to XPUB
|
||||
|
||||
* Fixed #3646 - static-only test run fails
|
||||
|
||||
* Fixed #3668 - fixed CMAKE_CXX_FLAGS_* regexes on MSVC
|
||||
|
||||
* Fixed #110 - do not include winsock2.h in public zmq.h header
|
||||
|
||||
* Fixed #3683 - allow "configure --disable-maintainer-mode"
|
||||
|
||||
* Fixed #3686 - fix documentation about sockets blocking on send operations
|
||||
|
||||
* Fixed #3323 - fix behavior of ZMQ_CONFLATE on PUB sockets
|
||||
|
||||
* Fixed #3698 - fix build on IBM i/PASE/os400
|
||||
|
||||
* Fixed #3705 - zero-sized messages cause assertion when glibc assertion are on
|
||||
|
||||
* Fixed #3713 - remove dependency on math library by avoiding std::ceil
|
||||
|
||||
* Fixed #3694 - build targeting Windows XP is broken
|
||||
|
||||
* Fixed #3691 - added support for IPC on Windows 10 via AF_UNIX
|
||||
|
||||
* Fixed #3725 - disable by default test that requires sudo on CMake
|
||||
|
||||
* Fixed #3727 - fix zmq_poller documentation example
|
||||
|
||||
* Fixed #3729 - do not check for FD_OOB when using WSAEventSelect on Windows
|
||||
|
||||
* Fixed #3738 - allow renaming the library in CMake
|
||||
|
||||
* Fixed #1808 - use AF_UNIX instead of TCP for the internal socket on Windows 10
|
||||
|
||||
* Fixed #3758 - fix pthread_set_affinity detection in CMake
|
||||
|
||||
* Fixed #3769 - fix undefined behaviour in array.hpp
|
||||
|
||||
* Fixed #3772 - fix compiling under msys2-mingw
|
||||
|
||||
* Fixed #3775 - add -latomic to the private libs flag in pkg-config if needed
|
||||
|
||||
* Fixed #3778 - fix documentation of zmq_poller's thread safety
|
||||
|
||||
* Fixed #3792 - do not allow creation of new sockets after zmq_ctx_shutdown
|
||||
|
||||
* Fixed #3805 - improve performance of CURVE by reducing copies
|
||||
|
||||
* Fixed #3814 - send subscribe/cancel as commands to ZMTP 3.1 peers
|
||||
|
||||
* Fixed #3847 - fix building without PGM and NORM
|
||||
|
||||
* Fixed #3849 - install .cmake file in arch-dependent subdirectory
|
||||
|
||||
* Fixed #4005 - allow building on Windows ARM/ARM64
|
||||
|
||||
0MQ version 4.3.2 stable, released on 2019/07/08
|
||||
================================================
|
||||
|
||||
* CVE-2019-13132: a remote, unauthenticated client connecting to a
|
||||
libzmq application, running with a socket listening with CURVE
|
||||
encryption/authentication enabled, may cause a stack overflow and
|
||||
overwrite the stack with arbitrary data, due to a buffer overflow in
|
||||
the library. Users running public servers with the above configuration
|
||||
are highly encouraged to upgrade as soon as possible, as there are no
|
||||
known mitigations. All versions from 4.0.0 and upwards are affected.
|
||||
Thank you Fang-Pen Lin for finding the issue and reporting it!
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) zmq_socket_monitor_versioned API that supports
|
||||
a versioned monitoring events protocol as a parameter. Passing 1 results in
|
||||
the same behaviour as zmq_socket_monitor.
|
||||
Version 2 of the events protocol allows new events, new metadata, different
|
||||
socket types for the monitors and more. It is described in details in
|
||||
doc/zmq_socket_monitor_versioned.txt
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) zmq_socket_monitor_pipes_stats that triggers
|
||||
a new ZMQ_EVENT_PIPES_STATS to be delivered via zmq_socket_monitor_versioned
|
||||
v2 API, which contains the current status of all the queues owned by the
|
||||
monitored socket. See doc/zmq_socket_monitor_versioned.txt for details.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) zmq_poller_fd that returns the FD of a thread
|
||||
safe socket. See doc/zmq_poller.txt for details.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) socket options:
|
||||
- ZMQ_XPUB_MANUAL_LAST_VALUE is similar to ZMQ_XPUB_MANUAL but allows to avoid
|
||||
duplicates when using last value caching.
|
||||
- ZMQ_SOCKS_USERNAME and ZMQ_SOCKS_PASSWORD that implement SOCKS5 proxy
|
||||
authentication.
|
||||
See doc/zmq_setsockopt.txt and doc/zmq_getsockopt.txt for details.
|
||||
|
||||
* Implemented background thread names for Windows, when the Visual Studio
|
||||
debugger is being used.
|
||||
|
||||
* Fixed #3358 - test_security_zap failing due to SIGBUS on SPARC64, hard-coded
|
||||
IPC socket binds in tests cause race conditions
|
||||
|
||||
* Fixed #3361 - enabling GSSAPI support (when using autools) does not work due
|
||||
to regression introduced in 4.2.3
|
||||
|
||||
* Fixed #3362 - remove documentation for ZMQ_THREAD_PRIORITY context option
|
||||
getter, it's not implemented
|
||||
|
||||
* Fixed #3363 - tests fail to build due to stricter compiler printf validation
|
||||
in new versions of GCC
|
||||
|
||||
* Fixed #3367 - try to infer cacheline size at build time, first with
|
||||
getconf LEVEL1_DCACHE_LINESIZE, and then by reading
|
||||
/sys/devices/system/cpu/cpu0/cache/index0/coherency_line_size
|
||||
(autoconf only), and only then falling back to the previous
|
||||
default of 64 bytes. Avoids false sharing on POWER and s390x.
|
||||
Import ax_func_posix_memalign.m4 as a more reliable check for
|
||||
posix_memalign presence on some unix platforms.
|
||||
Prefer c++11 atomic primitives to compiler intrinsics, when
|
||||
both are available, as the former is more reliable.
|
||||
Set test_pair_ipc and test_rebind_ipc to XFAIL on GNU/Hurd due
|
||||
to non-functioning getsockname on AF_UNIX.
|
||||
|
||||
* Fixed #3370 - Make queue length and HWM state observable
|
||||
|
||||
* Fixed #3373 - performance regression in zmq_poll on CentOS 6/7
|
||||
|
||||
* Fixed #3375 - assign names to all pthreads created by the library to ease
|
||||
debugging
|
||||
|
||||
* Fixed #3376 - assigned random TIPC port is not returned by ZMQ_LAST_ENDPOINT
|
||||
|
||||
* Fixed #3385 - TCP port in ZMQ_LAST_ENDPOINT depends on global locale
|
||||
|
||||
* Fixed #3404 - use std::condition_variable_any when possible
|
||||
|
||||
* Fixed #3436 - reconnect interval exponential backoff and may lead to integer
|
||||
overflows
|
||||
|
||||
* Fixed #3440 - improve zmq_proxy performance by batching of up to 1000
|
||||
consecutive messages (if any) and add perf/proxy_thr tool
|
||||
|
||||
* Fixed #3451 - fix support of /dev/poll on Solaris
|
||||
|
||||
* Fixed #3452 - strnlen may not be available
|
||||
|
||||
* Fixed #1462 - test failure in test_filter_ipc due to invalid system groups
|
||||
|
||||
* Fixed #3269 - Boost.ASIO integration stopped working with v4.3.0
|
||||
|
||||
* Fixed #3479 - ZeroMQ does not build for QNX 6.6 with CMake
|
||||
|
||||
* Fixed #3481 - add <ios> include to fix uClibc++ compilation
|
||||
|
||||
* Fixed #3491 - build broken on Fedora 30
|
||||
|
||||
* Fixed #3494 - ZeroMQConfig.cmake fails if shared libraries are not built
|
||||
|
||||
* Fixed #3498 - syntax error on Windows related to socket descriptor type
|
||||
|
||||
* Fixed #3500 - PLAIN HELLO message incorrectly uses WELCOME literal, regression
|
||||
introduced in 4.3.0
|
||||
|
||||
* Fixed #3517 - configure errors because of syntax errors in the use of test
|
||||
shell command
|
||||
|
||||
* Fixed #3521 - document how to achieve high performance with the PGM transport
|
||||
|
||||
* Fixed #3526 - failure case behavior unclear in zmq_msg_send documentation
|
||||
|
||||
* Fixed #3537 - fix build on z/OS by using pthread_equal instead of comparing
|
||||
variables directly
|
||||
|
||||
* Fixed #3546 - CMake links with librt on MinGW which is not available
|
||||
|
||||
* Many coding style, duplication, testing and static analysis improvements.
|
||||
|
||||
|
||||
0MQ version 4.3.1 stable, released on 2019/01/12
|
||||
================================================
|
||||
|
||||
* CVE-2019-6250: A vulnerability has been found that would allow attackers to
|
||||
direct a peer to jump to and execute from an address indicated by the
|
||||
attacker.
|
||||
This issue has been present since v4.2.0. Older releases are not affected.
|
||||
NOTE: The attacker needs to know in advance valid addresses in the peer's
|
||||
memory to jump to, so measures like ASLR are effective mitigations.
|
||||
NOTE: this attack can only take place after authentication, so peers behind
|
||||
CURVE/GSSAPI are not vulnerable to unauthenticated attackers.
|
||||
See https://github.com/zeromq/libzmq/issues/3351 for more details.
|
||||
Thanks to Guido Vranken for uncovering the issue and providing the fix!
|
||||
|
||||
* Note for packagers: as pkg-config's Requires.private is now used to properly
|
||||
propagate dependencies for static builds, the libzmq*-dev or zeromq-devel or
|
||||
equivalent package should now depend on the libfoo-dev or foo-devel packages
|
||||
of all the libraries that zmq is linked against, or pkg-config --libs libzmq
|
||||
will fail due to missing dependencies on end users machines.
|
||||
|
||||
* Fixed #3351 - remote code execution vulnerability.
|
||||
|
||||
* Fixed #3343 - race condition in ZMQ_PUSH when quickly disconnecting and
|
||||
reconnecting causes last part of multi-part message to get
|
||||
"stuck" and resent by mistake to the new socket.
|
||||
|
||||
* Fixed #3336 - set Requires.private in generate pkg-config file.
|
||||
|
||||
* Fixed #3334 - set TCP_NODELAY after connect() on Windows for the I/O socket.
|
||||
|
||||
* Fixed #3326 - assert on Android when opening a socket and disabling WiFi.
|
||||
|
||||
* Fixed #3320 - build failure on OpenBSD with GCC.
|
||||
|
||||
0MQ version 4.3.0 stable, released on 2018/11/28
|
||||
================================================
|
||||
|
||||
* The following DRAFT APIs have been marked as STABLE and will not change
|
||||
anymore:
|
||||
- ZMQ_MSG_T_SIZE context option (see doc/zmq_ctx_get.txt)
|
||||
- ZMQ_THREAD_AFFINITY_CPU_ADD and ZMQ_THREAD_AFFINITY_CPU_REMOVE (Posix only)
|
||||
context options, to add/remove CPUs to the affinity set of the I/O threads.
|
||||
See doc/zmq_ctx_set.txt and doc/zmq_ctx_get.txt for details.
|
||||
- ZMQ_THREAD_NAME_PREFIX (Posix only) context option, to add a specific
|
||||
integer prefix to the background threads names, to easily identify them.
|
||||
See doc/zmq_ctx_set.txt and doc/zmq_ctx_get.txt for details.
|
||||
- ZMQ_GSSAPI_PRINCIPAL_NAMETYPE and ZMQ_GSSAPI_SERVICE_PRINCIPAL_NAMETYPE
|
||||
socket options, for the corresponding GSSAPI features. Additional
|
||||
definitions for principal name types:
|
||||
- ZMQ_GSSAPI_NT_HOSTBASED
|
||||
- ZMQ_GSSAPI_NT_USER_NAME
|
||||
- ZMQ_GSSAPI_NT_KRB5_PRINCIPAL
|
||||
See doc/zmq_gssapi.txt for details.
|
||||
- ZMQ_BINDTODEVICE socket option (Linux only), which will bind the
|
||||
socket(s) to the specified interface. Allows to use Linux VRF, see:
|
||||
https://www.kernel.org/doc/Documentation/networking/vrf.txt
|
||||
NOTE: requires the program to be ran as root OR with CAP_NET_RAW
|
||||
- zmq_timers_* APIs. These functions can be used for cross-platforms timed
|
||||
callbacks. See doc/zmq_timers.txt for details.
|
||||
- The following socket monitor events:
|
||||
- ZMQ_EVENT_HANDSHAKE_FAILED_NO_DETAIL: unknown errors during handshake.
|
||||
- ZMQ_EVENT_HANDSHAKE_SUCCEEDED: Handshake completed with authentication.
|
||||
- ZMQ_EVENT_HANDSHAKE_FAILED_PROTOCOL: Protocol errors with peers or ZAP.
|
||||
- ZMQ_EVENT_HANDSHAKE_FAILED_AUTH: Failed authentication requests.
|
||||
See doc/zmq_socket_monitor.txt for more details and error codes.
|
||||
- zmq_stopwatch_intermediate which returns the time elapsed without stopping
|
||||
the stopwatch.
|
||||
- zmq_proxy_steerable command 'STATISTICS' to retrieve stats about the amount
|
||||
of messages and bytes sent and received by the proxy.
|
||||
See doc/zmq_proxy_steerable.txt for more information.
|
||||
|
||||
* The build-time configuration option to select the poller has been split, and
|
||||
new API_POLLER (CMake) and --with-api-poller (autoconf) options will now
|
||||
determine what system call is used to implement the zmq_poll/zmq_poller APIs.
|
||||
The previous POLLER and --with-poller options now only affects the
|
||||
internal I/O thread. In case API_POLLER is not specified, the behaviour keeps
|
||||
backward compatibility intact and will be the same as with previous releases.
|
||||
|
||||
* The non-default "poll" poller for the internal I/O thread (note: NOT for the
|
||||
zmq_poll/zmq_poller user APIs!) has been disabled on Windows as WSAPoll does
|
||||
not report connection failures. For more information see:
|
||||
- https://daniel.haxx.se/blog/2012/10/10/wsapoll-is-broken/
|
||||
- https://curl.haxx.se/mail/lib-2012-10/0038.html
|
||||
- https://bugs.python.org/issue16507
|
||||
|
||||
* New epoll implementation for Windows, using the following implementation:
|
||||
https://github.com/piscisaureus/wepoll/tree/v1.5.4
|
||||
To use this, select "epoll" as the poller option in the build system.
|
||||
Note for distributors: the wepoll source code is embedded and distributed.
|
||||
It is licensed under the BSD-2-Clause and thus it is compatible with LGPL-3.0.
|
||||
Note that, if selected at build time, the license text must be distributed
|
||||
with the binary in accordance to the license terms. A copy can be found at:
|
||||
external/wepoll/license.txt
|
||||
|
||||
* The pre-made Visual Studio solutions file are deprecated, and users are
|
||||
encouraged to use the CMake solution generation feature instead.
|
||||
|
||||
* New DRAFT (see NEWS for 4.2.0) socket options:
|
||||
- ZMQ_ROUTER_NOTIFY to deliver a notification when a peer connects and/or
|
||||
disconnects in the form of a routing id plus a zero-length frame.
|
||||
- ZMQ_MULTICAST_LOOP to control whether the data sent should be looped back
|
||||
on local listening sockets for UDP multicast sockets (ZMQ_RADIO).
|
||||
See doc/zmq_setsockopt.txt and doc/zmq_getsockopt.txt for details.
|
||||
|
||||
* New perf tool, perf/benchmark_radix_tree, to measure the performance of the
|
||||
different internal implementations of the trie algorithm used to track
|
||||
subscriptions. Requires a compiler that supports C++11.
|
||||
|
||||
* New autoconf flag "--enable-force-CXX98-compat" which will force -std=gnu++98
|
||||
and, if the compiler supports them (clang++ at the moment), it will also add
|
||||
-Wc++98-compat -Wc++98-compat-pedantic so that compatibility with C++98 can
|
||||
be tested.
|
||||
|
||||
* Many, many coding style, duplication and static analysis improvements.
|
||||
|
||||
* Many, many improvements to the CMake build system, especially on Windows.
|
||||
|
||||
* Many, many improvements to unit tests.
|
||||
|
||||
* Fixed #3036 - Compilation error when -pedantic is used.
|
||||
|
||||
* Fixed #3028 - Failure when zmq_poller_destroy is called after zmq_ctx_term.
|
||||
|
||||
* Fixed #2989 - CMake: Linker PDB install rule does not work when Visual Studio
|
||||
generators are used.
|
||||
|
||||
* Fixed #3045 - configure.ac: search for dladdr only when using libunwind.
|
||||
|
||||
* Fixed #3060 - REQ sockets terminate TCP connection after first heartbeat if
|
||||
ZMQ_HEARTBEAT_IVL is set.
|
||||
|
||||
* Fixed #2212 - UDP: need ability to specify bind address separately from
|
||||
multicast address for multi-homed hosts.
|
||||
|
||||
* Fixed #2891 - UDP: address name resolution is limited to dotted IPv4 rather
|
||||
than being capable of IPv4, IPv6, and hostname lookup.
|
||||
|
||||
* Fixed #3085 - autoconf/CMake getrandom test does not check if it's working but
|
||||
only for its presence.
|
||||
|
||||
* Fixed #3090 - compilation broken with Solaris Studio.
|
||||
|
||||
* Fixed #3094 - UDP: pass interface via IP[V6]_MULTICAST_IF if provided.
|
||||
|
||||
* Fixed #3061 - implement ZMTP 3.1 ping/pong context sending/receiving.
|
||||
|
||||
* Fixed #2188 - Added documentation for new zmq_poller API.
|
||||
|
||||
* Fixed #3088 - zmq_poller_add/zmq_poller_modify should reject invalid events
|
||||
arguments.
|
||||
|
||||
* Fixed #3042 - Fixed compilation on ARM with ZMQ_ATOMIC_PTR_MUTEX.
|
||||
|
||||
* Fixed #3107 - test_immediate_3/test_reconnect_inproc do not terminate with
|
||||
POLL as the I/O thread poller under Windows.
|
||||
|
||||
* Fixed #3046 - Aborts when iOS abuses EBADF to report a socket has been
|
||||
reclaimed.
|
||||
|
||||
* Fixed #3136 - Cannot set ZMQ_HEARTBEAT_TTL to more than 655.3 seconds.
|
||||
|
||||
* Fixed #3083 - link with -latomic when needed.
|
||||
|
||||
* Fixed #3162 - build failure with MUSL libc.
|
||||
|
||||
* Fixed #3158 - -1 value of ZMQ_RECONNECT_IVL was not correctly handled on some
|
||||
platforms.
|
||||
|
||||
* Fixed #3170 - improved documentation for ZMQ_PAIR.
|
||||
|
||||
* Fixed #3168 - correctly use symbols map on Debian/kFreeBSD and Debian/HURD
|
||||
to avoid exporting standard library symbols.
|
||||
|
||||
* Fixed #3168 - correctly process ZMTP 3.1 cancel/subscribe commands.
|
||||
|
||||
* Fixed #3171 - improve documentation for ZMQ_CONFLATE.
|
||||
|
||||
* Fixed #2876 - stack overflow on Windows 64.
|
||||
|
||||
* Fixed #3191 - race condition with received message causes
|
||||
ZMQ_CONNECT_ROUTING_ID to be assigned to wrong socket.
|
||||
|
||||
* Fixed #3005 - added documentation for new zmq_timers_* API.
|
||||
|
||||
* Fixed #3222 - use /Z7 debug on Release builds too on Windows (CMake).
|
||||
|
||||
* Fixed #3226 - possible PGM receiver crash.
|
||||
|
||||
* Fixed #3236 - UDP dish socket can't bind to a multicast port already in use.
|
||||
|
||||
* Fixed #3242 - improve HWM documentation.
|
||||
|
||||
* Fixed #2488 - improve zmq_msg_send doc return value documentation.
|
||||
|
||||
* Fixed #3268 - HWM in ZMQ_DGRAM socket does not respect multipart message.
|
||||
|
||||
* Fixed #3284 - added support for ZMQ_MULTICAST_HOPS with UDP sockets.
|
||||
|
||||
* Fixed #3245 - use-after-free reported in zmq::pipe_t::terminate.
|
||||
|
||||
* Fixed #1400 - use patricia trie for subscription to improve performances and
|
||||
memory usage. Note: only active in DRAFT builds for now.
|
||||
|
||||
* Fixed #3263 - fix abort on Windows when a large TCP read is requested and
|
||||
fails.
|
||||
|
||||
* Fixed #3312 - fix build on Android Things 1.06 with Termux.
|
||||
|
||||
|
||||
0MQ version 4.2.5 stable, released on 2018/03/23
|
||||
================================================
|
||||
|
||||
|
@ -38,7 +38,7 @@ Freenode network (irc.freenode.net).
|
||||
|
||||
## Copyright
|
||||
Copyright (c) 2007-2016 Contributors as noted in the AUTHORS file.
|
||||
The project license is specified in LICENSE.
|
||||
The project license is specified in COPYING and COPYING.LESSER.
|
||||
|
||||
The names "ØMQ", "ZeroMQ", "0MQ", and the ØMQ logo are registered trademarks
|
||||
of iMatix Corporation ("iMatix") and refers to either (a) the original libzmq
|
||||
|
142
README.md
142
README.md
@ -1,9 +1,8 @@
|
||||
# ZeroMQ
|
||||
|
||||
[](https://github.com/zeromq/libzmq/actions/workflows/CI.yaml)
|
||||
[](https://travis-ci.org/zeromq/libzmq)
|
||||
[](https://ci.appveyor.com/project/zeromq/libzmq)
|
||||
[](https://coveralls.io/github/zeromq/libzmq?branch=master)
|
||||
[](https://conan.io/center/zeromq)
|
||||
|
||||
## Welcome
|
||||
|
||||
@ -14,104 +13,8 @@ abstraction of asynchronous message queues, multiple messaging patterns,
|
||||
message filtering (subscriptions), seamless access to multiple transport
|
||||
protocols and more.
|
||||
|
||||
## Supported platforms <a name="#platforms"/>
|
||||
|
||||
Libzmq is mainly written in C++98 with some optional C++11-fragments. For
|
||||
configuration either autotools or CMake is employed. See below for some lists
|
||||
of platforms, where libzmq has been successfully compiled on.
|
||||
|
||||
### Supported platforms with primary CI
|
||||
|
||||
| OS and version | Architecture | Compiler and version | Build system | Remarks |
|
||||
|----------------------------------------|-------------------------|-------------------------------|--------------|---------------------------------------------------------------------------------------------------------------------------------------|
|
||||
| Android NDK r25 | arm, arm64, x86, x86_64 | llvm (see NDK) | autotools | DRAFT |
|
||||
| Ubuntu 14.04.5 LTS (trusty) | amd64 | clang 5.0.0 | autotools | STABLE, extras: GSSAPI, PGM, NORM, C++98 mode only |
|
||||
| Ubuntu 14.04.5 LTS (trusty) | amd64 | gcc 4.8.4 | autotools | STABLE, DRAFT, extras: GSSAPI, PGM, NORM, TIPC, IPV6, also POLLER=poll, POLLER=select, also valgrind and address sanitizer executions |
|
||||
| Ubuntu 14.04.5 LTS (trusty) | amd64 | gcc 4.8.4 | CMake 3.12.2 | STABLE |
|
||||
| Windows Server 2012 R2 | x86 | Visual Studio 2008 | CMake 3.12.2 | DRAFT |
|
||||
| Windows Server 2012 R2 | x86 | Visual Studio 2010 SP1 | CMake 3.12.2 | DRAFT |
|
||||
| Windows Server 2012 R2 | x86 | Visual Studio 2012 Update 5 | CMake 3.12.2 | DRAFT |
|
||||
| Windows Server 2012 R2 | x86, amd64 | Visual Studio 2013 Update 5 | CMake 3.12.2 | DRAFT, STABLE (x86 Release only), also POLLER=epoll |
|
||||
| Windows Server 2012 R2 | x86 | Visual Studio 2015 Update 3 | CMake 3.12.2 | DRAFT |
|
||||
| Windows Server 2016 | x86 | Visual Studio 2017 15.9.6 | CMake 3.13.3 | DRAFT |
|
||||
| cygwin 3.0.0 on Windows Server 2012 R2 | amd64 | gcc 7.4.0 | CMake 3.6.2 | DRAFT |
|
||||
| MSYS2 ? on Windows Server 2012 R2 | amd64 | gcc 6.4.0 | CMake ? | DRAFT |
|
||||
| Mac OS X 10.13 | amd64 | Xcode 9.4.1, Apple LLVM 9.1.0 | autotools | STABLE, DRAFT |
|
||||
| Mac OS X 10.13 | amd64 | Xcode 9.4.1, Apple LLVM 9.1.0 | CMake 3.11.4 | DRAFT |
|
||||
|
||||
Note: the platforms are regularly updated by the service providers, so this information might get out of date
|
||||
without any changes on the side of libzmq. For Appveyor, refer to https://www.appveyor.com/updates/ regarding
|
||||
platform updates. For travis-ci, refer to https://changelog.travis-ci.com/ regarding platform updates.
|
||||
|
||||
### Supported platforms with secondary CI
|
||||
|
||||
| OS and version | Architecture | Compiler and version | Build system | Remarks |
|
||||
|------------------------------|----------------------------|----------------------|--------------|---------|
|
||||
| CentOS 6 | x86, amd64 | ? | autotools | |
|
||||
| CentOS 7 | amd64 | ? | autotools | |
|
||||
| Debian 8.0 | x86, amd64 | ? | autotools | |
|
||||
| Debian 9.0 | ARM64, x86, amd64 | ? | autotools | |
|
||||
| Fedora 28 | ARM64, ARM32, amd64 | ? | autotools | |
|
||||
| Fedora 29 | ARM64, ARM32, amd64 | ? | autotools | |
|
||||
| Fedora Rawhide | ARM64, ARM32, amd64 | ? | autotools | |
|
||||
| RedHat Enterprise Linux 7 | amd64, ppc64 | ? | autotools | |
|
||||
| SuSE Linux Enterprise 12 SP4 | ARM64, amd64, ppc64, s390x | ? | autotools | |
|
||||
| SuSE Linux Enterprise 15 | amd64 | ? | autotools | |
|
||||
| xUbuntu 12.04 | x86, amd64 | ? | autotools | |
|
||||
| xUbuntu 14.04 | x86, amd64 | ? | autotools | |
|
||||
| xUbuntu 16.04 | x86, amd64 | ? | autotools | |
|
||||
| xUbuntu 18.04 | x86, amd64 | ? | autotools | |
|
||||
| xUbuntu 18.10 | x86, amd64 | ? | autotools | |
|
||||
|
||||
### Supported platforms with known active users
|
||||
|
||||
At the time of writing, no explicit reports have been available. Please report your experiences by opening a PR
|
||||
adding an entry or moving an entry from the section below.
|
||||
|
||||
Under "last report", please name either the SHA1 in case of an unreleased version, or the version number in
|
||||
case of a released version.
|
||||
|
||||
| OS and version | Architecture | Compiler and version | Build system | Last report | Remarks |
|
||||
|----------------|-------------------|----------------------|--------------|-------------------------|---------|
|
||||
| Solaris 10 | x86, amd64, sparc | GCC 8.1.0 | CMake | 2019/03/18 | |
|
||||
| DragonFly BSD | amd64 | gcc 8.3 | autotools | 2018/08/07 git-72854e63 | |
|
||||
| IBM i | ppc64 | gcc 6.3 | autotools | 2019/10/02 git-25320a3 | |
|
||||
| QNX 7.0 | x86_64 | gcc 5.4.0 | CMake | 4.3.2 | |
|
||||
| Windows 10 | ARM64 | Visual Studio 2019 | CMake | 2021/11/15 git-2375ca8b | |
|
||||
| Windows 10 | ARM64 | clang | CMake | 2021/11/15 git-2375ca8b | |
|
||||
|
||||
### Supported platforms without known active users
|
||||
|
||||
Note: this list is incomplete and inaccurate and still needs some work.
|
||||
|
||||
| OS and version | Architecture | Compiler and version | Build system | Remarks |
|
||||
|------------------------|--------------|--------------------------|------------------|---------|
|
||||
| Any Linux distribution | x86, amd64 | gcc ?+, clang ?+, icc ?+ | autotools, CMake | |
|
||||
| SunOS, Solaris | x86, amd64 | SunPro | autotools, CMake | |
|
||||
| GNU/kFreeBSD | ? | ? | autotools, CMake | |
|
||||
| FreeBSD | ? | ? | autotools, CMake | |
|
||||
| NetBSD | ? | ? | autotools, CMake | |
|
||||
| OpenBSD | ? | ? | autotools, CMake | |
|
||||
| DragonFly BSD | amd64 | gcc 8.3 | autotools, CMake | |
|
||||
| HP-UX | ? | ? | autotools, CMake | |
|
||||
| GNU/Hurd | ? | ? | autotools | |
|
||||
| VxWorks 6.8 | ? | ? | ? | |
|
||||
| Windows CE | ? | ? | ? | |
|
||||
| Windows UWP | ? | ? | ? | |
|
||||
| OpenVMS | ? | ? | ? | |
|
||||
|
||||
### Unsupported platforms
|
||||
|
||||
| OS and version | Architecture | Compiler and version | Remarks |
|
||||
|----------------|--------------|----------------------|-------------------------------------------------------------------------|
|
||||
| QNX 6.3 | ? | gcc 3.3.5 | see #3371, support was added by a user, but not contributed to upstream |
|
||||
|
||||
For more details, see [here](SupportedPlatforms.md).
|
||||
|
||||
For some platforms (Linux, Mac OS X), [prebuilt binary packages are supplied by the ZeroMQ organization](#installation).
|
||||
For other platforms, you need to [build your own binaries](#build).
|
||||
|
||||
## Installation of binary packages <a name="installation"/>
|
||||
## Building and installation
|
||||
|
||||
### Linux
|
||||
|
||||
@ -155,26 +58,10 @@ For OSX users, packages are available via brew.
|
||||
|
||||
brew install zeromq
|
||||
|
||||
## Installation of package manager <a name="package manager"/>
|
||||
|
||||
### vcpkg
|
||||
|
||||
vcpkg is a full platform package manager, you can easily install libzmq via vcpkg.
|
||||
|
||||
git clone https://github.com/microsoft/vcpkg.git
|
||||
./bootstrap-vcpkg.bat # For powershell
|
||||
./bootstrap-vcpkg.sh # For bash
|
||||
./vcpkg install zeromq
|
||||
|
||||
## Build from sources <a name="build"/>
|
||||
### Build from sources
|
||||
|
||||
To build from sources, see the INSTALL file included with the distribution.
|
||||
|
||||
### Android
|
||||
|
||||
To build from source, see [README](./builds/android/README.md) file in the
|
||||
android build directory.
|
||||
|
||||
## Resources
|
||||
|
||||
Extensive documentation is provided with the distribution. Refer to
|
||||
@ -188,15 +75,28 @@ Announcements mailing list: zeromq-announce@lists.zeromq.org
|
||||
Git repository: http://github.com/zeromq/libzmq
|
||||
|
||||
ZeroMQ developers can also be found on the IRC channel #zeromq, on the
|
||||
Libera Chat network (irc.libera.chat).
|
||||
Freenode network (irc.freenode.net).
|
||||
|
||||
## License
|
||||
|
||||
The project license is specified in LICENSE.
|
||||
The project license is specified in COPYING and COPYING.LESSER.
|
||||
|
||||
libzmq is free software; you can redistribute it and/or modify it under
|
||||
the terms of the Mozilla Public License Version 2.0.
|
||||
the terms of the GNU Lesser General Public License (LGPL) as published
|
||||
by the Free Software Foundation; either version 3 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
## Contributing
|
||||
As a special exception, the Contributors give you permission to link
|
||||
this library with independent modules to produce an executable,
|
||||
regardless of the license terms of these independent modules, and to
|
||||
copy and distribute the resulting executable under terms of your choice,
|
||||
provided that you also meet, for each linked independent module, the
|
||||
terms and conditions of the license of that module. An independent
|
||||
module is a module which is not derived from or based on this library.
|
||||
If you modify this library, you must extend this exception to your
|
||||
version of the library.
|
||||
|
||||
This project uses [C4(Collective Code Construction Contract)](https://rfc.zeromq.org/spec:42/C4/) process for contributions.
|
||||
libzmq is distributed in the hope that it will be useful, but WITHOUT
|
||||
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
||||
FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public
|
||||
License for more details.
|
||||
|
15
RELICENSE/AndreLouisCaron.md
Normal file
15
RELICENSE/AndreLouisCaron.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Andre Caron
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "AndreLouisCaron", with
|
||||
commit author "Andre Caron <andre.l.caron@gmail.com>", are copyright of Andre Caron.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Andre Caron
|
||||
2017/03/19
|
13
RELICENSE/Asmod4n.md
Normal file
13
RELICENSE/Asmod4n.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Permission to Relicense under MPLv2
|
||||
|
||||
This is a statement by Hendrik Beskow
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "Asmod4n", with
|
||||
commit author "Asmod4n Asmod4n@users.noreply.github.com", are copyright of Hendrik Beskow.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Hendrik Beskow
|
||||
2017/04/21
|
13
RELICENSE/BerndPrager.md
Normal file
13
RELICENSE/BerndPrager.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Permission to Relicense under MPLv2
|
||||
|
||||
This is a statement by Bernd Prager
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "bprager", with
|
||||
commit author "Bernd Prager <bernd@prager.ws>", are copyright of Bernd Prager.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Bernd Prager
|
||||
2017/03/22
|
15
RELICENSE/Bklyn.md
Normal file
15
RELICENSE/Bklyn.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Caleb Epstein
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "Bklyn", with
|
||||
commit author "Caleb Epstein <cae@bklyn.org>", are copyright of Caleb Epstein.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Caleb Epstein
|
||||
2017/03/21
|
15
RELICENSE/BrianBuchanan.md
Normal file
15
RELICENSE/BrianBuchanan.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Brian Buchanan
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "bwbuchanan", with
|
||||
commit author "Brian Buchanan <bwb@holo.org>" or "Brian Buchanan <brian@tiogalake.com>", are copyright of Brian Buchanan.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Brian Buchanan
|
||||
2017/03/23
|
15
RELICENSE/ChuckRemes.md
Normal file
15
RELICENSE/ChuckRemes.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Chuck Remes
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "chuckremes", with
|
||||
commit author "Chuck Remes", are copyright of Chuck Remes.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Chuck Remes
|
||||
2017/03/21
|
15
RELICENSE/FrancoFichtner.md
Normal file
15
RELICENSE/FrancoFichtner.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Franco Fichtner that grants permission to relicense
|
||||
its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public
|
||||
License v2 (MPLv2) or any other Open Source Initiative approved license
|
||||
chosen by the current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "fichtner", with
|
||||
commit author "Franco Fichtner <franco@lastsummer.de>", are copyright
|
||||
of Franco Fichtner. This document hereby grants the libzmq project
|
||||
team to relicense libzmq, including all past, present and future
|
||||
contributions of the author listed above.
|
||||
|
||||
Franco Fichtner
|
||||
2017/03/21
|
15
RELICENSE/GavinMcNiff.md
Normal file
15
RELICENSE/GavinMcNiff.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Gavin McNiff
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "gavinmcniff", with
|
||||
commit author "Gavin McNiff <gavin@mcniff.ie>", are copyright of Gavin McNiff .
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Gavin McNiff
|
||||
2017/03/20
|
15
RELICENSE/GhislainPutois.md
Normal file
15
RELICENSE/GhislainPutois.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Ghislain PUTOIS
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "ghpu", with
|
||||
commit author "Ghislain PUTOIS", are copyright of Ghislain PUTOIS.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Ghislain PUTOIS
|
||||
2017/03/20
|
15
RELICENSE/GiuseppeCorbelli.md
Normal file
15
RELICENSE/GiuseppeCorbelli.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Giuseppe Corbelli
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "cowo78" with
|
||||
commit author "Giuseppe Corbelli <cowo78@gmail.com>", are copyright of Giuseppe Corbelli.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Giuseppe Corbelli
|
||||
2017/03/21
|
17
RELICENSE/HaraldAchitz.md
Normal file
17
RELICENSE/HaraldAchitz.md
Normal file
@ -0,0 +1,17 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Harald Achitz
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "a4z", with
|
||||
commit author "Harald Achitz <harald.achitz@gmail.com>" or
|
||||
"Harald Achitz <harald.achitz@tritech.se>" or
|
||||
"Harald Achitz <harald.achitz@getinge.com>", are copyright of Harald Achitz.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Harald Achitz
|
||||
2017/03/21
|
17
RELICENSE/Hugne.md
Normal file
17
RELICENSE/Hugne.md
Normal file
@ -0,0 +1,17 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Erik Hugne
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "Hugne", with
|
||||
commit author "erik.hugne@gmail.com", are copyright of Erik Hugne.
|
||||
Commits made by author "erik.hugne@ericsson.com" are NOT covered by this
|
||||
statement.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Erik Hugne
|
||||
2017/03/22
|
16
RELICENSE/JimHague.md
Normal file
16
RELICENSE/JimHague.md
Normal file
@ -0,0 +1,16 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Jim Hague that grants permission to relicense
|
||||
its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla
|
||||
Public License v2 (MPLv2) or any other Open Source Initiative approved
|
||||
license chosen by the current ZeroMQ BDFL (Benevolent Dictator for
|
||||
Life).
|
||||
|
||||
A portion of the commits made by the Github handle "banburybill", with
|
||||
commit author "Jim Hague <jim.hague@acm.org>", are copyright of Jim
|
||||
Hague. This document hereby grants the libzmq project team to
|
||||
relicense libzmq, including all past, present and future contributions
|
||||
of the author listed above.
|
||||
|
||||
Jim Hague
|
||||
2017/03/20
|
16
RELICENSE/JohanMabille.md
Normal file
16
RELICENSE/JohanMabille.md
Normal file
@ -0,0 +1,16 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Johan Mabille
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "JohanMabille", with
|
||||
commit author "Johan Mabille johan.mabille@gmail.com", are copyright of Johan Mabille.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Johan Mabille
|
||||
2017/03/20
|
||||
|
14
RELICENSE/LeonardMichelet
Normal file
14
RELICENSE/LeonardMichelet
Normal file
@ -0,0 +1,14 @@
|
||||
Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Léonard Michelet
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current
|
||||
ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "leonarf", with
|
||||
commit author "Andre Caron andre.l.caron@gmail.com", are copyright of Léonard Michelet.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Michelet Léonard 2017/03/29
|
15
RELICENSE/LeonardoConsoni.md
Normal file
15
RELICENSE/LeonardoConsoni.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Leonardo J. Consoni
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "Bitiquinho", with
|
||||
commit author "Leonardo José Consoni <consoni_2519@hotmail.com>", are copyright of Leonardo J. Consoni.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Leonardo José Consoni
|
||||
2017/03/19
|
15
RELICENSE/LionelOrry.md
Normal file
15
RELICENSE/LionelOrry.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Lionel Orry
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "chickenkiler", with
|
||||
commit author "Lionel Orry <lionel.orry@gmail.com>", are copyright of Lionel Orry.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Lionel Orry
|
||||
2017/03/23
|
15
RELICENSE/OsirisPedroso.md
Normal file
15
RELICENSE/OsirisPedroso.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by "Osiris Pedroso"
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "opedroso", with
|
||||
commit author "Osiris Pedroso <opedroso@gmail.com>", are copyright of "Osiris Pedroso".
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Osiris Pedroso
|
||||
2017/03/21
|
23
RELICENSE/README.md
Normal file
23
RELICENSE/README.md
Normal file
@ -0,0 +1,23 @@
|
||||
# Permission to Relicense under MPLV2
|
||||
|
||||
This directory collects grants from individuals and firms that hold
|
||||
copyrights in ZeroMQ to permit licensing the ZeroMQ code under
|
||||
the [Mozilla Public License, version
|
||||
2](https://www.mozilla.org/en-US/MPL/2.0/). See [GitHub Pull
|
||||
Request #1917](https://github.com/zeromq/libzmq/pull/1917),
|
||||
the [0MQ Licensing Page](http://zeromq.org/area:licensing) and
|
||||
[original iMatix zeromq-dev license
|
||||
grant](http://lists.zeromq.org/pipermail/zeromq-dev/2016-April/030288.html)
|
||||
for some background information.
|
||||
|
||||
Please create a separate file in this directory for each individual
|
||||
or firm holding copyright in ZeroMQ, named after the individual or
|
||||
firm holding the copyright.
|
||||
|
||||
Each patch must be made with a GitHub handle that is clearly
|
||||
associated with the copyright owner, to guarantee the identity of
|
||||
the signatory. Please avoid changing the files created by other
|
||||
individuals or firms granting a copyright license over their
|
||||
copyrights (if rewording is required contact them and ask them to
|
||||
submit an updated version). This makes it easier to verify that
|
||||
the license grant was made by an authorized GitHub account.
|
13
RELICENSE/RobGagnon.md
Normal file
13
RELICENSE/RobGagnon.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Robert Gagnon that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other Open Source Initiative approved
|
||||
license chosen by the current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "rgagnon24", with commit author
|
||||
"Robert Gagnon rgagnon24+zmq@gmail.com", are copyright of Robert Gagnon. This document hereby grants the
|
||||
libzmq project team to relicense libzmq, including all past, present and future contributions of the
|
||||
author listed above.
|
||||
|
||||
Robert Gagnon
|
||||
2017/03/19
|
15
RELICENSE/SebastienRombauts.md
Normal file
15
RELICENSE/SebastienRombauts.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Sébastien Rombauts
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "SRombauts", with
|
||||
commit author "Sébastien Rombauts", are copyright of Sébastien Rombauts.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Sébastien Rombauts
|
||||
2017/03/21
|
15
RELICENSE/StoianIvanov.md
Normal file
15
RELICENSE/StoianIvanov.md
Normal file
@ -0,0 +1,15 @@
|
||||
Permission to Relicense under MPLv2 or any other OSI approved license
|
||||
chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Stoian Ivanov that grants permission to relicense
|
||||
its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public
|
||||
License v2 (MPLv2) or any other Open Source Initiative approved license
|
||||
chosen by the current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "sdrsdr", with commit
|
||||
author "Stoian Ivanov sdr@mail.bg", are copyright of Stoian Ivanov. This
|
||||
document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Stoian Ivanov
|
||||
2017-03-23
|
16
RELICENSE/SylvainCorlay.md
Normal file
16
RELICENSE/SylvainCorlay.md
Normal file
@ -0,0 +1,16 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Sylvain Corlay
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "SylvainCorlay", with
|
||||
commit author "Sylvain Corlay sylvain.corlay@gmail.com", are copyright of Sylvain Corlay .
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Sylvain Corlay
|
||||
2017/03/20
|
||||
|
15
RELICENSE/TimotheeBesset.md
Normal file
15
RELICENSE/TimotheeBesset.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Timothee Besset
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "TTimo", with
|
||||
commit author "Timothee Besset <ttimo@ttimo.net>", are copyright of Timothee Besset.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Timothee Besset
|
||||
2017/03/19
|
15
RELICENSE/VincentTellier.md
Normal file
15
RELICENSE/VincentTellier.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Vincent Tellier
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "vtellier", with
|
||||
commit author "Vincent Tellier", are copyright of Vincent Tellier .
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Vincent Louis Théophile Tellier
|
||||
2017/03/20
|
15
RELICENSE/VolodymyrKorniichuk.md
Normal file
15
RELICENSE/VolodymyrKorniichuk.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Volodymyr Korniichuk
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "ezhikus", with
|
||||
commit author "VolodymyrKorn@gmail.com", are copyright of Volodymyr Korniichuk.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Volodymyr Korniichuk
|
||||
2017/03/21
|
16
RELICENSE/abbradar.md
Normal file
16
RELICENSE/abbradar.md
Normal file
@ -0,0 +1,16 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen
|
||||
# by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Nikolay Amiantov that grants permission to relicense his
|
||||
copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License
|
||||
v2 (MPLv2) or any other Open Source Initiative approved license chosen by the
|
||||
current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "abbradar", with commit
|
||||
author "Nikolay Amiantov <ab@fmap.me>", are copyright of Nikolay Amiantov.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed
|
||||
above.
|
||||
|
||||
Nikolay Amiantov
|
||||
2017/03/24
|
15
RELICENSE/agronholm.md
Normal file
15
RELICENSE/agronholm.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Alex Grönholm
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "agronholm", with
|
||||
commit author "Alex Grönholm <alex.gronholm+git@nextday.fi>", are copyright of Alex Grönholm.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Alex Grönholm
|
||||
2017/03/19
|
15
RELICENSE/amuraru.md
Normal file
15
RELICENSE/amuraru.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Adrian Muraru
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "rlenferink", with
|
||||
commit author "Adrian Muraru <adi.muraru@gmail.com>", are copyright of Adrian Muraru.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Adrian Muraru
|
||||
2017/03/20
|
15
RELICENSE/arsenm.md
Normal file
15
RELICENSE/arsenm.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Matthew Arsenault
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "arsenm", with
|
||||
commit author "Matt Arsenault <arsenm2@gmail.com>", are copyright of Matthew Arsenault.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Matthew Arsenault
|
||||
2017/10/12
|
15
RELICENSE/aseering.md
Normal file
15
RELICENSE/aseering.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Adam Seering
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commit made by the Github handle "aseering", with
|
||||
commit author "Adam Seering <aseering@gmail.com>", are copyright of Adam Seering.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Adam Seering
|
||||
2017/03/20
|
16
RELICENSE/bjorntopel.md
Normal file
16
RELICENSE/bjorntopel.md
Normal file
@ -0,0 +1,16 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Björn Töpel that grants permission to relicense
|
||||
its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla
|
||||
Public License v2 (MPLv2) or any other Open Source Initiative approved
|
||||
license chosen by the current ZeroMQ BDFL (Benevolent Dictator for
|
||||
Life).
|
||||
|
||||
A portion of the commits made by the Github handle "bjoto", with
|
||||
commit author "Bjorn Topel <bjorn.topel@gmail.com>", are copyright of
|
||||
Björn Töpel. This document hereby grants the libzmq project team to
|
||||
relicense libzmq, including all past, present and future contributions
|
||||
of the author listed above.
|
||||
|
||||
Björn Töpel
|
||||
2017/03/26
|
16
RELICENSE/bjovke.md
Normal file
16
RELICENSE/bjovke.md
Normal file
@ -0,0 +1,16 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Jovan Bunjevacki that grants permission to
|
||||
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||
Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "bjovke", with
|
||||
commit author "Jovan Bunjevacki <bjovan@gmail.com>", are
|
||||
copyright of Jovan Bunjevacki. This document hereby grants the libzmq
|
||||
project team to relicense libzmq, including all past, present and
|
||||
future contributions of the author listed above.
|
||||
|
||||
Jovan Bunjevacki
|
||||
2017/04/04
|
15
RELICENSE/brocade_communications_systems.md
Normal file
15
RELICENSE/brocade_communications_systems.md
Normal file
@ -0,0 +1,15 @@
|
||||
## Brocade Communications Systems Inc.
|
||||
|
||||
This is a statement by Brocade Communications Systems Inc. (Brocade)
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "bluca", with
|
||||
commit author "Luca Boccassi <luca.boccassi@gmail.com>" or
|
||||
"Luca Boccassi <lboccass@brocade.com>", are copyright of Brocade.
|
||||
This permission to relicense includes all past, present and future
|
||||
contributions of Brocade employees.
|
||||
|
||||
Luca Boccassi
|
||||
Software Engineer, Brocade Communications Systems Inc.
|
||||
2016-05-16
|
13
RELICENSE/brunobodin.md
Normal file
13
RELICENSE/brunobodin.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Permission to Relicense under MPLv2
|
||||
|
||||
This is a statement by Bruno Bodin
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "bbdb68", with
|
||||
commit author "Bruno Bodin <brunobodin@gmail.com>", are copyright of Bruno Bodin .
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Bruno Bodin
|
||||
2017/04/04
|
15
RELICENSE/c-rack.md
Normal file
15
RELICENSE/c-rack.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Constantin Rack
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "c-rack", with
|
||||
commit author "Constantin Rack <constantin.rack@gmail.com>", are copyright of Constantin Rack.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Constantin Rack
|
||||
2017/03/20
|
15
RELICENSE/camachat.md
Normal file
15
RELICENSE/camachat.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Eric Camachat
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "camachat", with
|
||||
commit author "Eric Camachat <eric@camachat.org>", are copyright of Eric Camachat.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Eric L. Camachat
|
||||
March 20, 2017
|
15
RELICENSE/cdolan.md
Normal file
15
RELICENSE/cdolan.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Christopher Dolan
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "cdolan", with
|
||||
commit author "Christopher Dolan <chris@codingstream.org>", are copyright of Christopher Dolan.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Christopher Dolan
|
||||
2017/03/19
|
14
RELICENSE/chrisstaite.md
Normal file
14
RELICENSE/chrisstaite.md
Normal file
@ -0,0 +1,14 @@
|
||||
# Permission to Relicense under MPLv2
|
||||
|
||||
This is a statement by Chris Staite that grants permission to relicense its
|
||||
copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License
|
||||
v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "chrisstaite", with commit
|
||||
author "Chris <chris@yourdreamnet.co.uk>", are copyright of Chris Staite.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed
|
||||
above.
|
||||
|
||||
Chris Staite
|
||||
2017/03/28
|
15
RELICENSE/chugga_fan.md
Normal file
15
RELICENSE/chugga_fan.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by "chugga\_fan"
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "chugga\_fan", with
|
||||
commit author "chugga\_fan chuggafans@gmail.com", are copyright of "chugga\_fan" .
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
"chugga\_fan"
|
||||
2017/03/19
|
15
RELICENSE/cjuniet.md
Normal file
15
RELICENSE/cjuniet.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Christophe Juniet
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "cjuniet", with
|
||||
commit author "Christophe Juniet <c.juniet@gmail.com>", are copyright of Christophe Juniet.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Christophe Juniet
|
||||
2017/03/20
|
15
RELICENSE/ckamm.md
Normal file
15
RELICENSE/ckamm.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Christian Kamm
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "ckamm", with
|
||||
commit author "Christian Kamm kamm@incasoftware.de", are copyright of Christian Kamm.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Christian Kamm
|
||||
2017/03/20
|
15
RELICENSE/clkao.md
Normal file
15
RELICENSE/clkao.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other share-alike OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Chia-liang Kao
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
share-alike Open Source Initiative approved license chosen by the current
|
||||
ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "clkao", with
|
||||
commit author "Chia-liang Kao clkao@clkao.org", are copyright of Chia-liang Kao.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Chia-liang Kao
|
||||
2017/03/20
|
15
RELICENSE/danielhtshih.md
Normal file
15
RELICENSE/danielhtshih.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Daniel Shih
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "danielhtshih", with
|
||||
commit author "Daniel Shih <hotingwow@gmail.com>", are copyright of Daniel Shih.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Daniel Shih
|
||||
2017/03/20
|
16
RELICENSE/danriegsecker.md
Normal file
16
RELICENSE/danriegsecker.md
Normal file
@ -0,0 +1,16 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Dan Riegsecker
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "danriegsecker", with
|
||||
commit author "Dan Riegsecker 1baldgeek@gmail.com", are copyright of
|
||||
Dan Riegsecker. This document hereby grants the libzmq project team to
|
||||
relicense libzmq, including all past, present and future contributions of
|
||||
the author listed above.
|
||||
|
||||
Dan Riegsecker
|
||||
2017/03/20
|
16
RELICENSE/dfons.md
Normal file
16
RELICENSE/dfons.md
Normal file
@ -0,0 +1,16 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Diego Fons
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "dfons", with
|
||||
commit author "Diego Fons <diego.fons@gmail.com>" or "Diego Fons <diego.fons@intraway.com>", are copyright of Diego Fons.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Diego Fons
|
||||
|
||||
2017/03/20
|
15
RELICENSE/djelenc.md
Normal file
15
RELICENSE/djelenc.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by David Jelenc
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "djelenc", with
|
||||
commit author "David Jelenc <david.jelenc@fri.uni-lj.si>", are copyright of David Jelenc.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
David Jelenc
|
||||
2017/03/20
|
15
RELICENSE/drodri.md
Normal file
15
RELICENSE/drodri.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Diego R.Losada
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "drodri", with
|
||||
commit author "drodri <diego.rlosada@gmail.com>", are copyright of Diego Rodriguez-Losada.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Diego Rodriguez-Losada
|
||||
2017/03/20
|
15
RELICENSE/eburkitt.md
Normal file
15
RELICENSE/eburkitt.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by G. Evan Burkitt
|
||||
that grants permission to relicense his copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "eburkitt", with
|
||||
commit author "Evan Burkitt <evanb@edulinksys.com>", are copyright of G. Evan Burkitt.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
G. Evan Burkitt
|
||||
2017/04/06
|
16
RELICENSE/egomotion.md
Normal file
16
RELICENSE/egomotion.md
Normal file
@ -0,0 +1,16 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Egomotion Limited
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "robertcastle", with
|
||||
commit author "Robert Castle <robert@egomotion.co.uk>", are copyright of Egomotion Limited.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Robert Castle,
|
||||
Director, Egomotion Limited
|
||||
2017/03/21
|
15
RELICENSE/evoskuil.md
Normal file
15
RELICENSE/evoskuil.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Eric Voskuil
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "evoskuil", with
|
||||
commit author "Eric Voskuil <eric@voskuil.org>", are copyright of Eric Voskuil.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Eric Voskuil
|
||||
2017/03/19
|
16
RELICENSE/febeling.md
Normal file
16
RELICENSE/febeling.md
Normal file
@ -0,0 +1,16 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Florian Ebeling that grants permission to
|
||||
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||
Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "febeling", with
|
||||
commit author "Florian Ebeling <florian.ebeling@gmail.com>", are
|
||||
copyright of Florian Ebeling. This document hereby grants the libzmq
|
||||
project team to relicense libzmq, including all past, present and
|
||||
future contributions of the author listed above.
|
||||
|
||||
Florian Ebeling
|
||||
2017/03/20
|
15
RELICENSE/fidlej.md
Normal file
15
RELICENSE/fidlej.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Ivo Danihelka
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "fidlej", with
|
||||
commit author "Ivo Danihelka <ivo@danihelka.net>", are copyright of Ivo Danihelka.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Ivo Danihelka
|
||||
2017/03/21
|
14
RELICENSE/flub.md
Normal file
14
RELICENSE/flub.md
Normal file
@ -0,0 +1,14 @@
|
||||
# Permission to Relicense under MPLv2
|
||||
|
||||
This is a statement by Floris Bruynooghe
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "flub", with
|
||||
commit author "Floris Bruynooghe <flub@devork.be>", are copyright of
|
||||
Floris Bruynooghe .
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Floris Bruynooghe
|
||||
2017/05/03
|
15
RELICENSE/gena-moscow.md
Normal file
15
RELICENSE/gena-moscow.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Gennady Makovetski
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "gena-moscow", with
|
||||
commit author "Gennady Makovetski <makovetski@gmail.com>", are copyright of Gennady Makovetski.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Gennady Makovetski
|
||||
2017/03/21
|
15
RELICENSE/gonzus.md
Normal file
15
RELICENSE/gonzus.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Gonzalo Diethelm
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "gonzus", with
|
||||
commit author "Gonzalo Diethelm <gonzalo.diethelm@diethelm.org>" or "Gonzalo Diethelm <gdiethelm@dcv.cl>", are copyright of Gonzalo Diethelm .
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Gonzalo Diethelm
|
||||
2017/03/20
|
13
RELICENSE/goodfella_ltd.md
Normal file
13
RELICENSE/goodfella_ltd.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Permission to Relicense under MPLV2 or any Open Source Initiative (OSI) approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Nick Guiffrida that grants permission to
|
||||
relicense its copyrights in the libzmq C++ library (ZeroMQ) under the
|
||||
Mozilla Public License v2 (MPLv2) or any other Open Source Initiative
|
||||
approved license chosen by the current ZeroMQ BDFL (Benevolent
|
||||
Dictator for Life).
|
||||
|
||||
The commits made by the Github handle "goodfella", with commit author
|
||||
"Nick Guiffrida goodfella005@gmail.com" are copyright of Nick
|
||||
Guiffrida. This document hereby grants the libzmq project team to
|
||||
relicense libzmq, including all past, present and future contributions
|
||||
of the author listed above.
|
13
RELICENSE/google.md
Normal file
13
RELICENSE/google.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Permission to Relicense under MPLv2
|
||||
|
||||
This is a statement by Google, Inc.
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "tkoeppe", with
|
||||
commit author "Thomas Köppe", are copyright of Google, Inc.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Thomas Köppe
|
||||
2017/09/13
|
15
RELICENSE/ianbarber.md
Normal file
15
RELICENSE/ianbarber.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Ian Barber
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commit made by the Github handle "ianbarber", with
|
||||
commit author "Ian Barber <ianbarber@gmail.com>", are copyright of Ian Barber.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Ian Barber
|
||||
2017/03/27
|
23
RELICENSE/imatix.md
Normal file
23
RELICENSE/imatix.md
Normal file
@ -0,0 +1,23 @@
|
||||
# Permission to Relicense under MPLV2
|
||||
|
||||
This document collects grants from firms that hold copyrights in ZeroMQ. Please add new firms at the start. Each patch must be made with a GitHub handle that guarantees identity of the signatory.
|
||||
|
||||
## iMatix Corporation
|
||||
|
||||
This is a statement by iMatix Corporation sprl (iMatix) that grants permission to relicense its copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||
|
||||
1. The original ZeroMQ codebase was developed from 2007-2009 by FastMQ Inc. (FastMQ) in Slovakia, which held all copyrights in code written by its staff.
|
||||
|
||||
2. On 2009-11-01, iMatix exercised an option to acquire FastMQ and its assets,
|
||||
including ZeroMQ. On or before 2010-01-05 the FastMQ copyrights in ZeroMQ were
|
||||
transferred to iMatix ([commit](https://github.com/zeromq/libzmq/commit/4f6baf4dde627656b63cc4e2acdb78a8577ba640)). The FastMQ legal entity was subsequently liquidated.
|
||||
|
||||
3. Between 2009 and 2016, iMatix has continued to add contributions to ZeroMQ under the GitHub handle 'hintjens'.
|
||||
|
||||
4. This grant therefore covers what remains of the original FastMQ codebase plus all later contributions.
|
||||
|
||||
5. iMatix hereby grants an irrevocable, global, and fully paid-up license on all its copyrights that exist in ZeroMQ, under the MPLv2.
|
||||
|
||||
-Pieter Hintjens
|
||||
CEO, iMatix Corporation sprl
|
||||
23 April 2016
|
13
RELICENSE/jakecobb.md
Normal file
13
RELICENSE/jakecobb.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Permission to Relicense under MPLv2
|
||||
|
||||
This is a statement by Jake Cobb
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "jakecobb", with
|
||||
commit author "Jake Cobb <jake.cobb@gmail.com>", are copyright of Jake Cobb.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Jake Cobb
|
||||
2017/04/04
|
15
RELICENSE/jemc.md
Normal file
15
RELICENSE/jemc.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Joe Eli McIlvain
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "jemc", with
|
||||
commit author "Joe Eli McIlvain", are copyright of Joe Eli McIlvain.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Joe Eli McIlvain
|
||||
2017/03/28
|
17
RELICENSE/jimklimov.md
Normal file
17
RELICENSE/jimklimov.md
Normal file
@ -0,0 +1,17 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Evgeny (Jim) Klimov
|
||||
that grants permission to relicense his copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "jimklimov",
|
||||
with commit author "Jim Klimov <jim@jimklimov.com>" or
|
||||
"Jim Klimov <jimklimov@gmail.com>", are copyright of Evgeny (Jim) Klimov.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed
|
||||
above.
|
||||
|
||||
Evgeny (Jim) Klimov
|
||||
2017/03/21
|
15
RELICENSE/jkryl.md
Normal file
15
RELICENSE/jkryl.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Jan Kryl
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "jkryl", with
|
||||
commit author "Jan Kryl jan.kryl@nexenta.com", are copyright of Jan Kryl.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Jan Kryl
|
||||
2017/03/19
|
15
RELICENSE/johntconklin.md
Normal file
15
RELICENSE/johntconklin.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by John T. Conklin
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "johntconklin", with
|
||||
commit author "J.T. Conklin <jtc@acorntoolworks.com>", are copyright of John T. Conklin.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
John T. Conklin
|
||||
2017-03-19
|
14
RELICENSE/jruffin.md
Normal file
14
RELICENSE/jruffin.md
Normal file
@ -0,0 +1,14 @@
|
||||
# Permission to Relicense under MPLv2
|
||||
|
||||
This is a statement by IVU Traffic Technologies AG
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "jruffin", with
|
||||
commit author "Julien Ruffin <jur@ivu.de>", are copyright of IVU Traffic Technologies AG.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Henrik Benner
|
||||
Head of Department Ticketing Development, IVU Traffic Technologies AG
|
||||
2017/05/10
|
15
RELICENSE/kentzo.md
Normal file
15
RELICENSE/kentzo.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Ilya Kulakov
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "kentzo", with
|
||||
commit author "Ilya Kulakov <kulakov.ilya@gmail.com>", are copyright of Ilya Kulakov.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Ilya Kulakov
|
||||
2017/05/23
|
13
RELICENSE/kevinsapper.md
Normal file
13
RELICENSE/kevinsapper.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Permission to Relicense under MPLv2
|
||||
|
||||
This is a statement by Kevin Sapper that grants permission to relicense its
|
||||
copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License
|
||||
v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "sappo", with commit author
|
||||
"Kevin Sapper <mail@kevinsapper.de>", are copyright of Kevin Sapper. This document hereby grants the
|
||||
libzmq project team to relicense libzmq, including all past, present and future
|
||||
contributions of the author listed above.
|
||||
|
||||
Kevin Sapper
|
||||
2017/03/20
|
12
RELICENSE/kobolog.md
Normal file
12
RELICENSE/kobolog.md
Normal file
@ -0,0 +1,12 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Andrey Sibiryov that grants permission to relicense its copyrights in the
|
||||
libzmq C++ library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other Open Source
|
||||
Initiative approved license chosen by the current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "kobolog", with commit author "Andrey Sibiryov <me@kobology.ru>",
|
||||
are copyright of Andrey Sibiryov. This document hereby grants the libzmq project team to
|
||||
relicense libzmq, including all past, present and future contributions of the author listed above.
|
||||
|
||||
Andrey Sibiryov
|
||||
2017/04/04
|
15
RELICENSE/kurdybacha.md
Normal file
15
RELICENSE/kurdybacha.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Pawel Kurdybacha
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "kurdybacha", with
|
||||
commit author "Pawel Kurdybacha pawel.kurdybacha@gmail.com", are copyright of Pawel Kurdybacha .
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Pawel Kurdybacha
|
||||
2017/04/13
|
15
RELICENSE/linville.md
Normal file
15
RELICENSE/linville.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Aaron Linville
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "linville", with
|
||||
commit author "Aaron Linville <aaron@linville.org>", are copyright of Aaron Linville.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Aaron Linville
|
||||
2017/03/27
|
15
RELICENSE/loachfish.md
Normal file
15
RELICENSE/loachfish.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Justin.Hung
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "loachfish", with
|
||||
commit author "Justin.Hung fronront@qq.com", are copyright of Justin.Hung .
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Justin.Hung
|
||||
2017/03/20
|
15
RELICENSE/lodagro.md
Normal file
15
RELICENSE/lodagro.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen
|
||||
# by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Wouter Overmeire that grants permission to relicense its
|
||||
copyrights in the libzmq C++ library (ZeroMQ) under the Mozilla Public License
|
||||
v2 (MPLv2) or any other Open Source Initiative approved license chosen by the
|
||||
current ZeroMQ BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "lodagro", with commit
|
||||
author "lodagro <lodagro@gmail.com>", are copyright of Wouter Overmeire. This
|
||||
document hereby grants the libzmq project team to relicense libzmq, including
|
||||
all past, present and future contributions of the author listed above.
|
||||
|
||||
Wouter Overmeire
|
||||
2017/04/01
|
15
RELICENSE/madebr.md
Normal file
15
RELICENSE/madebr.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Anonymous Maarten
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "madebr", with
|
||||
commit author "Anonymous Maarten <anonymous.maarten@gmail.com>", are copyright of Anonymous Maarten.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Anonymous Maarten
|
||||
2017/03/27
|
15
RELICENSE/mattconnolly.md
Normal file
15
RELICENSE/mattconnolly.md
Normal file
@ -0,0 +1,15 @@
|
||||
# Permission to Relicense under MPLv2 or any other OSI approved license chosen by the current ZeroMQ BDFL
|
||||
|
||||
This is a statement by Matthew Connolly
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2) or any other
|
||||
Open Source Initiative approved license chosen by the current ZeroMQ
|
||||
BDFL (Benevolent Dictator for Life).
|
||||
|
||||
A portion of the commits made by the Github handle "mattconnolly", with
|
||||
commit author "Matt Connolly <matt.connolly@me.com>", are copyright of Matthew Connolly.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Matthew Connolly
|
||||
2017/06/28
|
13
RELICENSE/mauri-melato.md
Normal file
13
RELICENSE/mauri-melato.md
Normal file
@ -0,0 +1,13 @@
|
||||
# Permission to Relicense under MPLv2
|
||||
|
||||
This is a statement by Maurizio Melato
|
||||
that grants permission to relicense its copyrights in the libzmq C++
|
||||
library (ZeroMQ) under the Mozilla Public License v2 (MPLv2).
|
||||
|
||||
A portion of the commits made by the Github handle "mauri-melato", with
|
||||
commit author "Maurizio Melato", are copyright of Maurizio Melato.
|
||||
This document hereby grants the libzmq project team to relicense libzmq,
|
||||
including all past, present and future contributions of the author listed above.
|
||||
|
||||
Maurizio Melato
|
||||
2017-04-04
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user