We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Should here https://github.com/cloudflare/goflow/blob/master/pb/flow.proto#L15 be a value from FlowType enum, for example 0 rather than 1 which is not defined in that type?
FlowType
0
1
If it is so I'll send PR
The text was updated successfully, but these errors were encountered:
Actually, it's the protobuf definition: it's not a default value but an identifier of the field (default is 0 in this case).
When decoding the protobuf without the schema, you will get something like field 1 = 9, but with a schema FlowType = 9.
field 1 = 9
FlowType = 9
Sorry, something went wrong.
Ah right, my bad. Thanks!
BGP Next Hop, Communities and AS-Path fields (cloudflare#101)
1468ff7
* Add BGP Next Hop field to flow message (#11) * Add BGP Communities and AS Path fields (#12) Co-authored-by: Simon Podlipsky <simon@podlipsky.net>
No branches or pull requests
Should here https://github.com/cloudflare/goflow/blob/master/pb/flow.proto#L15 be a value from
FlowType
enum, for example0
rather than1
which is not defined in that type?If it is so I'll send PR
The text was updated successfully, but these errors were encountered: