Skip to content

Commit

Permalink
Closes #8766: Add SCTP to service protocols list
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremystretch committed Mar 1, 2022
1 parent 1ab51ca commit df43039
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions docs/release-notes/version-3.1.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@

* [#8594](https://github.com/netbox-community/netbox/issues/8594) - Enable filtering by exact description match for all applicable models
* [#8629](https://github.com/netbox-community/netbox/issues/8629) - Add description to tag table search function
* [#8766](https://github.com/netbox-community/netbox/issues/8766) - Add SCTP to service protocols list

### Bug Fixes

Expand Down
2 changes: 2 additions & 0 deletions netbox/ipam/choices.py
Original file line number Diff line number Diff line change
Expand Up @@ -189,8 +189,10 @@ class ServiceProtocolChoices(ChoiceSet):

PROTOCOL_TCP = 'tcp'
PROTOCOL_UDP = 'udp'
PROTOCOL_SCTP = 'sctp'

CHOICES = (
(PROTOCOL_TCP, 'TCP'),
(PROTOCOL_UDP, 'UDP'),
(PROTOCOL_SCTP, 'SCTP'),
)

0 comments on commit df43039

Please sign in to comment.