2 Commits

Author SHA1 Message Date
4ling.cn
af67397fc9 fix compile warning 2024-03-12 10:55:51 +00:00
4ling.cn
7a2d2b5020 update fp.json 2024-03-12 10:47:28 +00:00
4 changed files with 20 additions and 1 deletions

18
fp.json
View File

@@ -72590,5 +72590,21 @@
"tcp_flags": 2, "tcp_flags": 2,
"ip_tos": 0, "ip_tos": 0,
"os": "Linux" "os": "Linux"
},
{
"tcp_options": "M1460,N,W3,N,N,T0,S,E,E,",
"tcp_options_ordered": "MNWNNTSEE",
"ip_total_length": 64,
"tcp_off": 44,
"tcp_window_scaling": 3,
"tcp_window_size": 31744,
"ip_ttl": 64,
"ip_id": 0,
"tcp_timestamp": 1,
"tcp_timestamp_echo_reply": 0,
"tcp_mss": 1460,
"tcp_flags": 2,
"ip_tos": 0,
"os": "iOS"
} }
] ]

View File

@@ -1,4 +1,5 @@
#include <sys/fcntl.h> #include <sys/fcntl.h>
#include <unistd.h>
#include "cJSON.h" #include "cJSON.h"

View File

@@ -2,6 +2,7 @@
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <sys/stat.h>
#include <sys/fcntl.h> #include <sys/fcntl.h>
#include "osfp_common.h" #include "osfp_common.h"

View File

@@ -1,6 +1,7 @@
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
#include <string.h> #include <string.h>
#include <ctype.h>
#include "cJSON.h" #include "cJSON.h"