base,dev,python: Rename Net namespace as networking
As part of recent decisions regarding namespace naming conventions, all namespaces will be changed to snake case. ::Net became ::networking. Change-Id: I6a77e36c84918174104e507453d53dfe3cb52d35 Signed-off-by: Daniel R. Carvalho <odanrc@yahoo.com.br> Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/45417 Reviewed-by: Jason Lowe-Power <power.jg@gmail.com> Maintainer: Jason Lowe-Power <power.jg@gmail.com> Tested-by: kokoro <noreply+kokoro@google.com>
This commit is contained in:
committed by
Daniel Carvalho
parent
90aab2f926
commit
06fb0753fe
@@ -934,7 +934,7 @@ def NextEthernetAddr():
|
||||
return value
|
||||
|
||||
class EthernetAddr(ParamValue):
|
||||
cxx_type = 'Net::EthAddr'
|
||||
cxx_type = 'networking::EthAddr'
|
||||
ex_str = "00:90:00:00:00:01"
|
||||
cmd_line_settable = True
|
||||
|
||||
@@ -981,13 +981,13 @@ class EthernetAddr(ParamValue):
|
||||
|
||||
@classmethod
|
||||
def cxx_ini_parse(self, code, src, dest, ret):
|
||||
code('%s = Net::EthAddr(%s);' % (dest, src))
|
||||
code('%s = networking::EthAddr(%s);' % (dest, src))
|
||||
code('%s true;' % ret)
|
||||
|
||||
# When initializing an IpAddress, pass in an existing IpAddress, a string of
|
||||
# the form "a.b.c.d", or an integer representing an IP.
|
||||
class IpAddress(ParamValue):
|
||||
cxx_type = 'Net::IpAddress'
|
||||
cxx_type = 'networking::IpAddress'
|
||||
ex_str = "127.0.0.1"
|
||||
cmd_line_settable = True
|
||||
|
||||
@@ -1039,7 +1039,7 @@ class IpAddress(ParamValue):
|
||||
# the form "a.b.c.d/n" or "a.b.c.d/e.f.g.h", or an ip and netmask as
|
||||
# positional or keyword arguments.
|
||||
class IpNetmask(IpAddress):
|
||||
cxx_type = 'Net::IpNetmask'
|
||||
cxx_type = 'networking::IpNetmask'
|
||||
ex_str = "127.0.0.0/24"
|
||||
cmd_line_settable = True
|
||||
|
||||
@@ -1113,7 +1113,7 @@ class IpNetmask(IpAddress):
|
||||
# When initializing an IpWithPort, pass in an existing IpWithPort, a string of
|
||||
# the form "a.b.c.d:p", or an ip and port as positional or keyword arguments.
|
||||
class IpWithPort(IpAddress):
|
||||
cxx_type = 'Net::IpWithPort'
|
||||
cxx_type = 'networking::IpWithPort'
|
||||
ex_str = "127.0.0.1:80"
|
||||
cmd_line_settable = True
|
||||
|
||||
|
||||
@@ -179,22 +179,22 @@ init_net(py::module_ &m_native)
|
||||
{
|
||||
py::module_ m = m_native.def_submodule("net");
|
||||
|
||||
py::class_<Net::EthAddr>(m, "EthAddr")
|
||||
py::class_<networking::EthAddr>(m, "EthAddr")
|
||||
.def(py::init<>())
|
||||
.def(py::init<const std::string &>())
|
||||
;
|
||||
|
||||
py::class_<Net::IpAddress>(m, "IpAddress")
|
||||
py::class_<networking::IpAddress>(m, "IpAddress")
|
||||
.def(py::init<>())
|
||||
.def(py::init<uint32_t>())
|
||||
;
|
||||
|
||||
py::class_<Net::IpNetmask, Net::IpAddress>(m, "IpNetmask")
|
||||
py::class_<networking::IpNetmask, networking::IpAddress>(m, "IpNetmask")
|
||||
.def(py::init<>())
|
||||
.def(py::init<uint32_t, uint8_t>())
|
||||
;
|
||||
|
||||
py::class_<Net::IpWithPort, Net::IpAddress>(m, "IpWithPort")
|
||||
py::class_<networking::IpWithPort, networking::IpAddress>(m, "IpWithPort")
|
||||
.def(py::init<>())
|
||||
.def(py::init<uint32_t, uint16_t>())
|
||||
;
|
||||
|
||||
Reference in New Issue
Block a user