An open API service indexing awesome lists of open source software.

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

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