add embedded iperf

main
Ben Grewell 4 years ago
parent 290ca8bde6
commit 03148c6413

4
.gitignore vendored

@ -14,5 +14,5 @@
# Dependency directories (remove the comment below to include it)
# vendor/
# Exclude the embedded directory
!embedded/*
# Ignore the embedded directory
embedded/

@ -1,7 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<module type="WEB_MODULE" version="4">
<component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" />
<content url="file://$MODULE_DIR$">
<excludeFolder url="file://$MODULE_DIR$/embedded" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="sourceFolder" forTests="false" />
</component>

@ -2,9 +2,16 @@
<project version="4">
<component name="ChangeListManager">
<list default="true" id="fc2840de-29dc-4fca-8e0e-a283562f60ca" name="Default Changelist" comment="">
<change afterPath="$PROJECT_DIR$/embedded/iperf3" afterDir="false" />
<change afterPath="$PROJECT_DIR$/iperf.go" afterDir="false" />
<change afterPath="$PROJECT_DIR$/bindata.go" afterDir="false" />
<change afterPath="$PROJECT_DIR$/cmd/main.go" afterDir="false" />
<change afterPath="$PROJECT_DIR$/go.mod" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.gitignore" beforeDir="false" afterPath="$PROJECT_DIR$/.gitignore" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/go-iperf.iml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/go-iperf.iml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
<change beforePath="$PROJECT_DIR$/embedded/cygwin1.dll" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/embedded/iperf3" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/embedded/iperf3.exe" beforeDir="false" />
<change beforePath="$PROJECT_DIR$/iperf.go" beforeDir="false" afterPath="$PROJECT_DIR$/iperf.go" afterDir="false" />
</list>
<option name="SHOW_DIALOG" value="false" />
<option name="HIGHLIGHT_CONFLICTS" value="true" />
@ -15,6 +22,7 @@
<option name="RECENT_TEMPLATES">
<list>
<option value="Go File" />
<option value="Go Application" />
</list>
</option>
</component>
@ -28,7 +36,7 @@
<option name="showLibraryContents" value="true" />
</component>
<component name="PropertiesComponent">
<property name="DefaultGoTemplateProperty" value="Go File" />
<property name="DefaultGoTemplateProperty" value="Go Application" />
<property name="RunOnceActivity.OpenProjectViewOnStart" value="true" />
<property name="WebServerToolWindowFactoryState" value="false" />
<property name="go.import.settings.migrated" value="true" />

File diff suppressed because one or more lines are too long

@ -0,0 +1,5 @@
package main
func main() {
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -0,0 +1,3 @@
module github.com/BGrewell/go-iperf
go 1.15

@ -1 +1,2 @@
package iperf

Loading…
Cancel
Save