DNET: Update documentation (#2483)

This commit is contained in:
Michael Ficocelli
2026-02-07 22:25:56 -05:00
committed by GitHub
parent e649adfef4
commit 425bff8217
25 changed files with 611 additions and 71 deletions

View File

@@ -2,16 +2,95 @@
[Home](./index.md) > [bitburner](./bitburner.md) > [HeartbleedOptions](./bitburner.heartbleedoptions.md)
## HeartbleedOptions type
## HeartbleedOptions interface
Options to change the behavior of [heartbleed](./bitburner.darknet.heartbleed.md) API.
**Signature:**
```typescript
type HeartbleedOptions = {
peek?: boolean;
logsToCapture?: number;
additionalMsec?: number;
};
interface HeartbleedOptions
```
## Properties
<table><thead><tr><th>
Property
</th><th>
Modifiers
</th><th>
Type
</th><th>
Description
</th></tr></thead>
<tbody><tr><td>
[additionalMsec?](./bitburner.heartbleedoptions.additionalmsec.md)
</td><td>
</td><td>
number
</td><td>
_(Optional)_ The number of additional milliseconds to add to the run time of the heartbleed request. Default is 0. Must be a non-negative integer.
</td></tr>
<tr><td>
[logsToCapture?](./bitburner.heartbleedoptions.logstocapture.md)
</td><td>
</td><td>
number
</td><td>
_(Optional)_ The number of log lines to remove from the server. Default is 1. Must be a positive integer.
</td></tr>
<tr><td>
[peek?](./bitburner.heartbleedoptions.peek.md)
</td><td>
</td><td>
boolean
</td><td>
_(Optional)_ If true, looks at the most recent log lines but does not remove them. Default is false.
</td></tr>
</tbody></table>