Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hansemannn/titanium-mac-address
Receive the Mac-Address from a given IP-Address (Private API, behave!)
https://github.com/hansemannn/titanium-mac-address
ip-address javascript mac-address titanium
Last synced: 3 months ago
JSON representation
Receive the Mac-Address from a given IP-Address (Private API, behave!)
- Host: GitHub
- URL: https://github.com/hansemannn/titanium-mac-address
- Owner: hansemannn
- License: mit
- Created: 2017-04-19T07:08:10.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2017-04-19T07:19:36.000Z (over 7 years ago)
- Last Synced: 2024-07-16T00:52:51.482Z (4 months ago)
- Topics: ip-address, javascript, mac-address, titanium
- Language: C
- Size: 37.1 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Mac Adress from IP Adress in Appcelerator Titanium
## Warning
Yeah, this is usng private API. Do not attempt to submit anything of this to
the App Store or you app will be rejected. Use this for local tests or in-house
applications.## Attributions
Big shout-out to [@mavris](https://github.com/mavris) for the native library, thank you!## Usage
```js
var MacUtils = require('ti.macaddress');
var macAdress = MacUtils.macAddressFromIPAddress('192.168.0.1');
```## Android Notes
The Android part of this module is available and based on [this blog post](http://robinhenniges.com/en/android6-get-mac-address-programmatically) (thank you!),
but I did not include the required headers so far, so you might want to fix that before. In addition,
remeber to include the `` permission of course.## Author
Hans Knoechel ([@hansemannnn](https://twitter.com/hansemannnn) / [Web](http://hans-knoechel.de))## License
MIT## Contributing
Code contributions are greatly appreciated, please submit a new [pull request](https://github.com/hansemannn/titanium-mac-address/pull/new/master)!