Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tailscale/libtailscale
Tailscale C library
https://github.com/tailscale/libtailscale
Last synced: 21 days ago
JSON representation
Tailscale C library
- Host: GitHub
- URL: https://github.com/tailscale/libtailscale
- Owner: tailscale
- License: bsd-3-clause
- Created: 2023-02-21T01:01:40.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-19T16:53:48.000Z (24 days ago)
- Last Synced: 2024-11-19T17:50:08.636Z (24 days ago)
- Language: Go
- Homepage:
- Size: 196 KB
- Stars: 177
- Watchers: 21
- Forks: 19
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# libtailscale
libtailscale is a C library that embeds Tailscale into a process.
Use this library to compile Tailscale into your program and get
an IP address on a tailnet, entirely from userspace.## Building
With the latest version of Go, run:
```
go build -buildmode=c-archive
```This will produce a `libtailscale.a` file. Link it into your binary,
and use the `tailscale.h` header to reference it.It is also possible to build a shared library using
```
go build -buildmode=c-shared
```## Bugs
Please file any issues about this code or the hosted service on
[the issue tracker](https://github.com/tailscale/tailscale/issues).## License
BSD 3-Clause for this repository, see LICENSE.