mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-22 01:49:48 +00:00
9 lines
174 B
C++
9 lines
174 B
C++
#include <mysql.h>
|
|
int foo(MYSQL handle, unsigned int timeout) {
|
|
return (mysql_get_option(&handle, MYSQL_OPT_CONNECT_TIMEOUT, &timeout));
|
|
}
|
|
|
|
int main() {
|
|
return 0;
|
|
}
|