Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
emulab
emulab-devel
Commits
ad3efe93
Commit
ad3efe93
authored
Aug 25, 2006
by
Leigh B. Stoller
Browse files
Add a per-experiment port registration table. See tmcd.c ...
parent
26c4153c
Changes
2
Hide whitespace changes
Inline
Side-by-side
sql/database-create.sql
View file @
ad3efe93
...
...
@@ -2020,6 +2020,19 @@ CREATE TABLE port_counters (
PRIMARY
KEY
(
node_id
,
card
,
port
)
)
TYPE
=
MyISAM
;
--
-- Table structure for table `port_registration`
--
CREATE
TABLE
port_registration
(
pid
varchar
(
12
)
NOT
NULL
default
''
,
eid
varchar
(
32
)
NOT
NULL
default
''
,
service
varchar
(
64
)
NOT
NULL
default
''
,
node_id
varchar
(
32
)
NOT
NULL
default
''
,
port
int
(
11
)
unsigned
NOT
NULL
default
'0'
,
PRIMARY
KEY
(
pid
,
eid
,
service
)
)
TYPE
=
MyISAM
;
--
-- Table structure for table `portmap`
--
...
...
sql/database-migrate.txt
View file @
ad3efe93
...
...
@@ -3649,3 +3649,15 @@ last_net_act,last_cpu_act,last_ext_act);
unlock tables;
4.83: Add a per-experiment port registration table. See tmcd.c
CREATE TABLE port_registration (
pid varchar(12) NOT NULL default '',
eid varchar(32) NOT NULL default '',
service varchar(64) NOT NULL default '',
node_id varchar(32) NOT NULL default '',
port int(11) unsigned NOT NULL default '0',
PRIMARY KEY (pid,eid,service)
) TYPE=MyISAM;
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment