fix: update remaining go-onvif references to onvif-go for complete branding consistency

- server/types.go: Manufacturer identifier 'go-onvif' → 'onvif-go'
- cmd/onvif-server/main.go: Manufacturer flag default 'go-onvif' → 'onvif-go'
- server/README.md: Documentation updated
- examples/manual-soap-test/main.go: Code comments updated (2 instances)
- examples/complete-demo/main.go: Code comment updated

Now using 'onvif-go' consistently across all project files, including
device identifiers, code comments, and documentation.
This commit is contained in:
ProtoTess
2025-11-17 16:06:13 +00:00
parent eadd0d74f7
commit 5a21df55f8
5 changed files with 6 additions and 6 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ func main() {
port := flag.Int("port", 8080, "Server port")
username := flag.String("username", "admin", "Authentication username")
password := flag.String("password", "admin", "Authentication password")
manufacturer := flag.String("manufacturer", "go-onvif", "Device manufacturer")
manufacturer := flag.String("manufacturer", "onvif-go", "Device manufacturer")
model := flag.String("model", "Virtual Multi-Lens Camera", "Device model")
firmware := flag.String("firmware", "1.0.0", "Firmware version")
serial := flag.String("serial", "SN-12345678", "Serial number")