[PACKET_IO]format comment

This commit is contained in:
liuwentan
2022-07-29 15:41:09 +08:00
parent ee2513fde4
commit 7a52bf3c60
9 changed files with 61 additions and 75 deletions

View File

@@ -22,12 +22,12 @@ int pio_pcap_file_device_close(const struct packet_io_device *pdev) {
return 0;
}
int pio_pcap_file_device_receive(struct packet_io_device *pdev, uint32_t rxq_id, struct packet *p[], int nr_p) {
int pio_pcap_file_device_receive(struct packet_io_device *pdev, uint32_t rxq_id, struct packet **pkts, int nr_pkts) {
return 0;
}
int pio_pcap_file_device_send(struct packet_io_device *pdev, uint32_t txq_id, struct packet *p[], int nr_p) {
int pio_pcap_file_device_send(struct packet_io_device *pdev, uint32_t txq_id, struct packet **pkts, int nr_pkts) {
return 0;
}