Changeset 103789 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt
- Timestamp:
- Mar 11, 2024 5:53:04 PM (14 months ago)
- svn:sync-xref-src-repo-rev:
- 162158
- Location:
- trunk/src/VBox/HostDrivers/VBoxNetFlt/linux
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c
r102874 r103789 74 74 #include <VBox/vmm/pdmnetinline.h> 75 75 #include <VBox/param.h> 76 #include <VBox/VBoxLnxModInline.h> 76 77 #include <iprt/alloca.h> 77 78 #include <iprt/assert.h> … … 274 275 { 275 276 int rc; 277 278 /* Check if modue loading was disabled. */ 279 if (!vbox_mod_should_load()) 280 return -EINVAL; 281 276 282 /* 277 283 * Initialize IPRT. -
trunk/src/VBox/HostDrivers/VBoxNetFlt/linux/files_vboxnetflt
r103007 r103789 90 90 ${PATH_ROOT}/include/VBox/types.h=>include/VBox/types.h \ 91 91 ${PATH_ROOT}/include/VBox/SUPDrvMangling.h=>include/VBox/SUPDrvMangling.h \ 92 ${PATH_ROOT}/include/VBox/VBoxLnxModInline.h=>include/VBox/VBoxLnxModInline.h \ 92 93 ${PATH_ROOT}/src/VBox/HostDrivers/VBoxNetFlt/linux/VBoxNetFlt-linux.c=>linux/VBoxNetFlt-linux.c \ 93 94 ${PATH_ROOT}/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFlt.c=>VBoxNetFlt.c \
Note:
See TracChangeset
for help on using the changeset viewer.