diff --git a/www/cgi-bin/c_mysql_ip_fw_add_del.c b/www/cgi-bin/c_mysql_ip_fw_add_del.c index f7ee6f1..7992f55 100644 --- a/www/cgi-bin/c_mysql_ip_fw_add_del.c +++ b/www/cgi-bin/c_mysql_ip_fw_add_del.c @@ -1,3 +1,10 @@ +/** + * 该文件用于匹配fw.html + * 使用该.c文件可实现从名为router的数据库中 + * 实现获取前端页面输入的ip地址 + * 对存有黑名单数据的ip_fw表进行写入或删除操作 + */ + #include #include #include diff --git a/www/cgi-bin/c_mysql_ip_fw_view.c b/www/cgi-bin/c_mysql_ip_fw_view.c index 339b412..9c2fd14 100644 --- a/www/cgi-bin/c_mysql_ip_fw_view.c +++ b/www/cgi-bin/c_mysql_ip_fw_view.c @@ -1,3 +1,9 @@ +/** + * 该文件用于匹配fw.html + * 使用该.c文件可实现从名为router的数据库中 + * 查询存有黑名单数据的ip_fw表 + */ + #include #include #include diff --git a/www/cgi-bin/c_mysql_ip_mac.c b/www/cgi-bin/c_mysql_ip_mac.c index 59f494f..e4e6bfc 100644 --- a/www/cgi-bin/c_mysql_ip_mac.c +++ b/www/cgi-bin/c_mysql_ip_mac.c @@ -1,3 +1,9 @@ +/** + * 该文件用于匹配arp.html + * 使用该.c文件可实现从名为router的数据库中 + * 查询存有arp数据的ip_mac表 + */ + #include #include #include diff --git a/www/cgi-bin/c_mysql_user_pwd.c b/www/cgi-bin/c_mysql_user_pwd.c index 0db9da8..e835b00 100644 --- a/www/cgi-bin/c_mysql_user_pwd.c +++ b/www/cgi-bin/c_mysql_user_pwd.c @@ -1,3 +1,9 @@ +/** + * 该文件用于匹配login.html + * 使用该.c文件可实现从名为router的数据库中 + * 查询存有登录名及密码的users表 + */ + #include #include #include