first shot

This commit is contained in:
Andre Heber
2024-08-05 21:43:12 +02:00
parent 868be1adef
commit cff9ddd062
2 changed files with 150 additions and 8 deletions

View File

@ -8,6 +8,13 @@ The SIP Parser is a Go-based application designed to read and validate text file
- Validates the structure and content of SIP messages.
- Provides feedback on the validity of the messages.
## Developer Features
- uses bufio.Scanner with a []byte Buffer for line-by-line reading with a custom Split function
- processes the message in a single pass
- handles multi-line headers
- concurrent parsing for multiple messages
- using sync.Pool to reuse message structures
## Installation
1. Ensure you have Go installed on your machine. You can download it from [here](https://golang.org/dl/).
2. Clone the repository: