forked from radareorg/radare2-r2pipe
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
46 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,6 @@ | ||
r2pipe.go | ||
========= | ||
|
||
Go module to interact with radare2 | ||
|
||
|
||
## How to use? | ||
|
||
### Code | ||
```go | ||
package test | ||
[![GoDoc](https://godoc.org/github.com/radare/r2pipe-go?status.svg)](https://godoc.org/github.com/radare/r2pipe-go) | ||
|
||
import ( | ||
"github.com/radare/radare2-r2pipe/go" | ||
) | ||
|
||
func main() { | ||
r2p, err := r2pipe.NewPipe("malloc://256") | ||
} | ||
``` | ||
|
||
### Compiling | ||
```sh | ||
$ go get | ||
$ go build test.go | ||
``` | ||
Go module to interact with radare2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,31 @@ | ||
See https://github.com/radare/r2pipe.rs | ||
r2pipe.rs | ||
========= | ||
|
||
| **TravisCI** | [![Build Status](https://travis-ci.org/radare/r2pipe.rs.svg?branch=master)](https://travis-ci.org/radare/r2pipe.rs)| | ||
|
||
The Rust Crate to interact with radare2. | ||
Please check [Documentation](https://radare.github.io/r2pipe.rs) to get | ||
started. | ||
|
||
|
||
TODO | ||
---- | ||
* Support async API | ||
* Support HTTP connectivity | ||
* Add custom r2 start flags for spawn method | ||
* Add plain TCP api | ||
* Better error handling | ||
|
||
## License | ||
|
||
Licensed under either of | ||
|
||
* Apache License, Version 2.0, ([LICENSE-APACHE](LICENSE-APACHE) or http://www.apache.org/licenses/LICENSE-2.0) | ||
* MIT license ([LICENSE-MIT](LICENSE-MIT) or http://opensource.org/licenses/MIT) | ||
|
||
at your option. | ||
|
||
### Contribution | ||
|
||
Unless you explicitly state otherwise, any contribution intentionally submitted | ||
for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions. |