BootFileURL returns the value in the Boot File URL Option, or nil if the option doesn't exist
()
| 335 | |
| 336 | // BootFileURL returns the value in the Boot File URL Option, or nil if the option doesn't exist |
| 337 | func (o Options) BootFileURL() []byte { |
| 338 | opt, exists := o[OptBootfileURL] |
| 339 | if exists { |
| 340 | return opt[0].Value |
| 341 | } |
| 342 | return nil |
| 343 | } |
no outgoing calls