router_emulator项目,后端.cgi部分,最终版完整代码上传
This commit is contained in:
parent
f0dd8df0d7
commit
5addbcbaa6
|
@ -1,3 +1,10 @@
|
|||
/**
|
||||
* 该文件用于匹配fw.html
|
||||
* 使用该.c文件可实现从名为router的数据库中
|
||||
* 实现获取前端页面输入的ip地址
|
||||
* 对存有黑名单数据的ip_fw表进行写入或删除操作
|
||||
*/
|
||||
|
||||
#include <cjson/cJSON.h>
|
||||
#include <mysql/mysql.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
/**
|
||||
* 该文件用于匹配fw.html
|
||||
* 使用该.c文件可实现从名为router的数据库中
|
||||
* 查询存有黑名单数据的ip_fw表
|
||||
*/
|
||||
|
||||
#include <cjson/cJSON.h>
|
||||
#include <mysql/mysql.h>
|
||||
#include <stdio.h>
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
/**
|
||||
* 该文件用于匹配arp.html
|
||||
* 使用该.c文件可实现从名为router的数据库中
|
||||
* 查询存有arp数据的ip_mac表
|
||||
*/
|
||||
|
||||
#include <cjson/cJSON.h>
|
||||
#include <fcntl.h>
|
||||
#include <mysql/mysql.h>
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
/**
|
||||
* 该文件用于匹配login.html
|
||||
* 使用该.c文件可实现从名为router的数据库中
|
||||
* 查询存有登录名及密码的users表
|
||||
*/
|
||||
|
||||
#include <cjson/cJSON.h>
|
||||
#include <fcntl.h>
|
||||
#include <mysql/mysql.h>
|
||||
|
|
Loading…
Reference in New Issue