diff options
author | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-11-05 23:46:06 +0100 |
---|---|---|
committer | Justus Winter <4winter@informatik.uni-hamburg.de> | 2015-11-05 23:46:06 +0100 |
commit | a41984e726601b2f6cf61e3128aba84f7a85436c (patch) | |
tree | 6d1156eb0d5779bda12592eca6f2c9ca93722a09 /eth-multiplexer | |
parent | 573055eb4f44e819f983f083c52716bdec8edf14 (diff) |
sync with upstream packaging
Diffstat (limited to 'eth-multiplexer')
-rw-r--r-- | eth-multiplexer/device_impl.c | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/eth-multiplexer/device_impl.c b/eth-multiplexer/device_impl.c index 35a4da44..7d82b8d9 100644 --- a/eth-multiplexer/device_impl.c +++ b/eth-multiplexer/device_impl.c @@ -39,32 +39,6 @@ extern struct port_class *other_portclass; extern struct port_info *notify_pi; /* Implementation of device interface */ -kern_return_t -ds_xxx_device_set_status (struct vether_device *vdev, dev_flavor_t flavor, - dev_status_t status, size_t statu_cnt) -{ - if (vdev == NULL) - return D_NO_SUCH_DEVICE; - return D_INVALID_OPERATION; -} - -kern_return_t -ds_xxx_device_get_status (struct vether_device *vdev, dev_flavor_t flavor, - dev_status_t status, size_t *statuscnt) -{ - if (vdev == NULL) - return D_NO_SUCH_DEVICE; - return D_INVALID_OPERATION; -} - -kern_return_t -ds_xxx_device_set_filter (struct vether_device *vdev, mach_port_t rec, - int pri, filter_array_t filt, size_t len) -{ - if (vdev == NULL) - return D_NO_SUCH_DEVICE; - return D_INVALID_OPERATION; -} /* * This function is currently running in the multithread environment, |