package
0.0.0-20210422070550-2cf5192549a3
Repository: https://github.com/quantumintegration/gatt.git
Documentation: pkg.go.dev
# README
gioctl 
Simple library which provides golang versions of the ioctl macros in linux.
References
- https://github.com/luismesas/goPi started with the IOCTL stuff from this project initally.
- http://www.circlemud.org/jelson/software/fusd/docs/node31.html good information on IOCTL macros.
License
This code is Copyright (c) 2014 Mark Wolfe and licenced under the MIT licence. All rights not explicitly granted in the MIT license are reserved. See the included LICENSE.md file for more details.
# Functions
Io used for a simple ioctl that sends nothing but the type and number, and receives back nothing but an (integer) retval.
Ioctl simplified ioct call.
IoR used for an ioctl that reads data from the device driver.
IoRW a combination of IoR and IoW.
IoW used for an ioctl that writes data to the device driver.