https://github.com/netkiller/mysql-udp-plugin
UDP Send to remote
https://github.com/netkiller/mysql-udp-plugin
Last synced: 11 months ago
JSON representation
UDP Send to remote
- Host: GitHub
- URL: https://github.com/netkiller/mysql-udp-plugin
- Owner: netkiller
- License: cc0-1.0
- Created: 2014-08-04T08:00:25.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2017-03-30T03:11:08.000Z (over 9 years ago)
- Last Synced: 2025-04-28T11:27:33.526Z (about 1 year ago)
- Language: C
- Homepage: http://netkiller.github.io
- Size: 6.84 KB
- Stars: 7
- Watchers: 4
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
mysql-udp_sendto-plugin
=======================
UDP Sendto
Build
-----
# git clone https://github.com/netkiller/mysql-udp-plugin.git
# cd mysql-udp-plugin
# cmake .
# make && make install
Install
-------
create function udp_sendto returns string soname 'libudp_sendto.so';
Uninstall
---------
drop function udp_sendto;
Usage
-----
select udp_sendto('192.168.2.1','4000','hello');
Test
----
# nc -luv 4000