mirror of
https://git.rwth-aachen.de/acs/public/villas/node/
synced 2025-03-09 00:00:00 +01:00
restructure repo: server
git-svn-id: https://zerberus.eonerc.rwth-aachen.de:8443/svn/s2ss/trunk@101 8ec27952-4edc-4aab-86aa-e87bb2611832
This commit is contained in:
parent
16ff135384
commit
4701ce2602
25 changed files with 7 additions and 14 deletions
10
.gitignore
vendored
10
.gitignore
vendored
|
@ -1,10 +0,0 @@
|
|||
|
||||
*.d
|
||||
*.o
|
||||
*~
|
||||
|
||||
server
|
||||
test
|
||||
random
|
||||
send
|
||||
receive
|
3
server/.gitignore
vendored
Normal file
3
server/.gitignore
vendored
Normal file
|
@ -0,0 +1,3 @@
|
|||
*.d
|
||||
*.o
|
||||
*~
|
|
@ -5,7 +5,7 @@ name = "s2ss"; # The name of this node
|
|||
affinity = 0x02; # Mask of cores the server should run on
|
||||
priority = 50; # Scheduler priority for the server
|
||||
|
||||
user = "acs-admin"; # Drop privileges after initialization
|
||||
user = "acs-admin"; # Drop privileges after initialization
|
||||
group = "acs-admin";
|
||||
|
||||
nodes = {
|
|
@ -11,7 +11,7 @@ nodes = {
|
|||
type = "opal", # server, workstation, opal, rtds or dsp
|
||||
local = "127.0.0.1:10201", # Local ip:port, use '*' for random port
|
||||
remote = "127.0.0.1:10200"
|
||||
},
|
||||
}
|
||||
};
|
||||
|
||||
paths = (
|
||||
|
@ -19,6 +19,6 @@ paths = (
|
|||
enabled = true, # Enable this path
|
||||
reverse = false, # Setup a path in the reverse direction too
|
||||
in = "node", # Name of the node we listen to (see above)
|
||||
out = "node", # And we loop back to the origin
|
||||
out = "node" # And we loop back to the origin
|
||||
}
|
||||
);
|
|
@ -53,7 +53,7 @@ struct path
|
|||
/** The thread id for this path */
|
||||
pthread_t tid;
|
||||
/** A second thread id for fixed rate sending thread */
|
||||
phtread_t tid2;
|
||||
pthread_t tid2;
|
||||
/** A pointer to the libconfig object which instantiated this path */
|
||||
config_setting_t *cfg;
|
||||
|
Loading…
Add table
Reference in a new issue