浏览代码

Make pcap_inject non-static, so that its prototype doesn't conflict with

the real pcap_inject in the case where we do have it.
tags/v0.9.3
Michael Brown 18 年前
父节点
当前提交
9ea782d339
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      src/util/hijack.c

+ 1
- 1
src/util/hijack.c 查看文件

59
  * have it.  Will almost certainly only work under Linux.
59
  * have it.  Will almost certainly only work under Linux.
60
  *
60
  *
61
  */
61
  */
62
-static int pcap_inject ( pcap_t *pcap, const void *data, size_t len ) {
62
+int pcap_inject ( pcap_t *pcap, const void *data, size_t len ) {
63
 	int fd;
63
 	int fd;
64
 	char *errbuf = pcap_geterr ( pcap );
64
 	char *errbuf = pcap_geterr ( pcap );
65
 
65
 

正在加载...
取消
保存