File tree Expand file tree Collapse file tree 2 files changed +3
-4
lines changed
src/main/java/org/linktechtips Expand file tree Collapse file tree 2 files changed +3
-4
lines changed Original file line number Diff line number Diff line change @@ -22,8 +22,8 @@ GPL-3.0第7节中的附加条款
22
22
* 更稳定的FSD
23
23
* ECHO防崩溃
24
24
* 用户上下线记录
25
- ## 待实现功能
26
25
* 使用mySQL作为cert数据库
26
+ ## 待实现功能
27
27
* 内置PDC
28
28
* 内置语音实现
29
29
* Remark同步
Original file line number Diff line number Diff line change @@ -602,14 +602,13 @@ private void makeConnections() {
602
602
centry = cgroup .getEntry ("allowfrom" );
603
603
if (centry != null ) {
604
604
/* Allow the configured servers */
605
- int nParts = centry .getNParts ();
606
- for (int x = 0 ; x < nParts ; x ++) {
605
+ int x , nParts = centry .getNParts ();
606
+ for (x = 0 ; x < nParts ; x ++) {
607
607
serverInterface .allow (centry .getPart (x ));
608
608
}
609
609
} else {
610
610
LOGGER .warn ("[BetterFSD]: No 'allowfrom' found, allowing everybody on the server port" );
611
611
}
612
-
613
612
serverInterface .sendReset ();
614
613
}
615
614
}
You can’t perform that action at this time.
0 commit comments