Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add platform support diagram to README #7

Merged
merged 1 commit into from
Jan 15, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -159,6 +159,23 @@ Adding routes is explained elsewhere, here are a few resources for you:
./adslib_for_linux/build/AdsTool/AdsTool <target_ip> addroute --addr=<linux_ip> --netid=<linux_netid> --password=<target_password>
```

## Platform support diagram

```mermaid
flowchart LR
subgraph AdsToJava["AdsToJava-3.dll"]
end
subgraph libAdsToJava["libAdsToJava-3.so"]
end
subgraph TcJavaToAds["TcJavaToAds-3.1.0.jar"]
end
TcJavaToAds --"Windows"--> AdsToJava
TcJavaToAds --> libAdsToJava
AdsToJava --> TcAdsDll.dll
libAdsToJava --"Linux"--> libads.so
libAdsToJava --"Tc/BSD"--> libTcAdsDll.so
```

## Contributing

The main purpose of this repository is to continue evolving this
Expand Down
Loading