git.stg.codes
/
stg.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Radius (#9)
[stg.git]
/
projects
/
sgconf
/
makeproto.h
1
#pragma once
2
3
#include "config.h"
4
5
#include "stg/servconf.h"
6
7
namespace SGCONF
8
{
9
10
inline
11
STG::ServConf makeProto(const CONFIG& config)
12
{
13
return STG::ServConf(config.server.value(),
14
config.port.value(),
15
config.localAddress.value(),
16
config.localPort.value(),
17
config.userName.value(),
18
config.userPass.value());
19
}
20
21
}