pmcf 2.70.4 → 2.70.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pmcf",
3
- "version": "2.70.4",
3
+ "version": "2.70.5",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -61,4 +61,9 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
61
61
  get ipAddresses() {
62
62
  return _localAddresses;
63
63
  }
64
+
65
+ get MTU()
66
+ {
67
+ return 16436;
68
+ }
64
69
  }
@@ -328,5 +328,6 @@ export class LoopbackNetworkInterface extends SkeletonNetworkInterface {
328
328
  get domainNames(): Set<string>;
329
329
  get hostName(): string;
330
330
  get ipAddresses(): Map<string, import("pmcf").Subnet>;
331
+ get MTU(): number;
331
332
  }
332
333
  import { SkeletonNetworkInterface } from "./skeleton.mjs";