Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fuzzBackEnd
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
钱炳权
fuzzBackEnd
Commits
4f3c6779
Commit
4f3c6779
authored
May 29, 2024
by
钱炳权
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
纯净版后端
parent
f3b4df34
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
19 additions
and
1 deletions
+19
-1
AlfnetController.java
...com/example/fuzzControll/controller/AlfnetController.java
+1
-0
SeedFileController.java
...m/example/fuzzControll/controller/SeedFileController.java
+1
-1
CmdStartParams.java
...java/com/example/fuzzControll/pojo/vo/CmdStartParams.java
+17
-0
No files found.
fuzzIntegration/src/main/java/com/example/fuzzControll/controller/AlfnetController.java
View file @
4f3c6779
...
...
@@ -29,6 +29,7 @@ public class AlfnetController {
*/
@RequestMapping
(
value
=
"/testStart"
,
method
=
RequestMethod
.
POST
)
public
AjaxResult
start
(
@RequestBody
final
CmdStartParams
cmdStartParams
)
{
System
.
out
.
println
(
cmdStartParams
);
//todo 捕获子线程错误
try
{
new
Thread
(
new
Runnable
()
{
...
...
fuzzIntegration/src/main/java/com/example/fuzzControll/controller/SeedFileController.java
View file @
4f3c6779
...
...
@@ -41,7 +41,7 @@ public class SeedFileController {
/**
* 种子文件删除接口
*/
@RequestMapping
(
value
=
"/delete"
,
method
=
RequestMethod
.
POST
)
@RequestMapping
(
value
=
"/delete
/{filName}
"
,
method
=
RequestMethod
.
POST
)
public
AjaxResult
delete
(
@RequestParam
(
"fileName"
)
String
fileName
)
{
try
{
service
.
delFile
(
fileName
);
...
...
fuzzIntegration/src/main/java/com/example/fuzzControll/pojo/vo/CmdStartParams.java
View file @
4f3c6779
...
...
@@ -19,4 +19,21 @@ public class CmdStartParams {
String
script
;
//script
int
stateSelectionAlgo
;
int
seedSelectionAlgo
;
@Override
public
String
toString
()
{
return
"CmdStartParams{"
+
"netinfo='"
+
netinfo
+
'\''
+
", protopcol='"
+
protopcol
+
'\''
+
", waiting="
+
waiting
+
", nsname='"
+
nsname
+
'\''
+
", kill="
+
kill
+
", awareMode="
+
awareMode
+
", regionMutationOperators="
+
regionMutationOperators
+
", falseNegativeMode="
+
falseNegativeMode
+
", script='"
+
script
+
'\''
+
", stateSelectionAlgo="
+
stateSelectionAlgo
+
", seedSelectionAlgo="
+
seedSelectionAlgo
+
'}'
;
}
}
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