nieluj / nntp-proxy

simple NNTP proxy with SSL support

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Userauth with mysql

extremeshok opened this issue · comments

Allow the users to be stored in a mysql database.

create database user_db;
use user_db;
create table user (
user_id int(6) not null auto_increment,
username varchar(16) not null,
password varchar(64) not null,
max_connections int(6)) not null
);