diff options
| author | Chris Lu <chris.lu@gmail.com> | 2013-02-10 03:25:35 -0800 |
|---|---|---|
| committer | Chris Lu <chris.lu@gmail.com> | 2013-02-10 03:25:35 -0800 |
| commit | ab6fb13ad795763ba7fc7c91696d2890be6da543 (patch) | |
| tree | 3d956452bdcef7ea4b50457faff07df06f8d4346 /weed/util/post.go | |
| parent | 1b6f53cdac9a44370f67276ede138f5cde8806c2 (diff) | |
| download | seaweedfs-ab6fb13ad795763ba7fc7c91696d2890be6da543.tar.xz seaweedfs-ab6fb13ad795763ba7fc7c91696d2890be6da543.zip | |
avoid the "src" folder
Diffstat (limited to 'weed/util/post.go')
| -rw-r--r-- | weed/util/post.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/weed/util/post.go b/weed/util/post.go new file mode 100644 index 000000000..6e6ab0003 --- /dev/null +++ b/weed/util/post.go @@ -0,0 +1,23 @@ +package util + +import ( + "io/ioutil" + "log" + "net/http" + "net/url" +) + +func Post(url string, values url.Values) ([]byte, error) { + r, err := http.PostForm(url, values) + if err != nil { + log.Println("post to", url, err) + return nil, err + } + defer r.Body.Close() + b, err := ioutil.ReadAll(r.Body) + if err != nil { + log.Println("read post result from", url, err) + return nil, err + } + return b, nil +} |
