File: //opt/alt/python37/lib/python3.7/site-packages/exabgp/bgp/message/unknown.py
# encoding: utf-8
"""
unknown.py
Created by Thomas Mangin on 2013-07-20.
Copyright (c) 2009-2017 Exa Networks. All rights reserved.
License: 3-clause BSD. (See the COPYRIGHT file)
"""
from exabgp.util import character
from exabgp.bgp.message.message import Message
# ================================================================= UnknownMessage
#
class UnknownMessage(Message):
# Make sure we have a value, which is not defined in any RFC !
def __init__(self, code, data=b''):
self.ID = code
self.TYPE = character(code)
self.data = data
def message(self, negotiated=None):
return self._message(self.data)
def __str__(self):
return "UNKNOWN"
@classmethod
def unpack_message(cls, data): # pylint: disable=W0613
raise RuntimeError('should not have been used')
UnknownMessage.klass_unknown = UnknownMessage