Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Use dynamic array instead of arraylistHEADmaster | Robby Zambito | 5 days |
| | | | | we know the size (assuming the len is correct) so we can preallocate the whole array | ||
* | Depend on clap the same way as network | Robby Zambito | 6 days |
| | |||
* | Don't print help after sending message | Robby Zambito | 6 days |
| | |||
* | Add comment for cli example reference | Robby Zambito | 6 days |
| | |||
* | Allow caller to specify what kind of message to send with arg | Robby Zambito | 6 days |
| | |||
* | Nicer message for no response | Robby Zambito | 6 days |
| | |||
* | Handle network blocking well | Robby Zambito | 6 days |
| | |||
* | Don't use multi threading where it is not required | Robby Zambito | 6 days |
| | |||
* | Last handshake packet uses non 8888 port | Robby Zambito | 6 days |
| | |||
* | Complete the handshake | Robby Zambito | 6 days |
| | |||
* | Receive and print the response from the sentinel | Robby Zambito | 6 days |
| | |||
* | Initial awaiting for handshake response | Robby Zambito | 6 days |
| | | | | | seems like i might be getting my own initial connection? I get a response even without the sentinal running. | ||
* | Start proper connection handshake | Robby Zambito | 6 days |
| | |||
* | Move binary back to zaprus | Robby Zambito | 6 days |
| | | | | Also clean up the args for the aux functions by computing the type instead of passing it | ||
* | Correctly handle the endiness and packedness of the the header reading and ↵ | Robby Zambito | 6 days |
| | | | | writing | ||
* | Write the header as a packed int | Robby Zambito | 6 days |
| | | | | this seems like the best way to do it. | ||
* | Not using writer | Robby Zambito | 6 days |
| | | | | | Use direct mem copying into the buf instead of writing to it with the writer interface. Probably better to use the writer actually, since this suffers from the same issue with the extra two null bytes. | ||
* | Initial testing of connection message | Robby Zambito | 6 days |
| | |||
* | Move sendRelay logic to Saprus struct | Robby Zambito | 6 days |
| | |||
* | Break relay into a specific program | Robby Zambito | 6 days |
| | |||
* | Move types to their own file | Robby Zambito | 6 days |
| | | | | Make it so I can specify the payload message | ||
* | GREATLY improve clarity | Robby Zambito | 6 days |
| | |||
* | Move dba to top level scope | Robby Zambito | 6 days |
| | | | | This makes it so references to it are lazily compiled, so I can throw a compileError if it is referenced in the wrong mode. | ||
* | add comments!!!!! | Robby Zambito | 6 days |
| | |||
* | move aux funcs back into the union | Robby Zambito | 6 days |
| | | | | also move the body of the base64 handling back to the only place it is used now | ||
* | Remove redundant comptime | Robby Zambito | 6 days |
| | | | | Move edge together at the end of the switch | ||
* | Properly initialize the SaprusMessage fromBytes | Robby Zambito | 6 days |
| | | | | Will actually use the provided packet type inline. | ||
* | dedup some | Robby Zambito | 6 days |
| | | | | Still need to clean up fromBytesAux | ||
* | Break out encoding and decoding into its own functions | Robby Zambito | 6 days |
| | |||
* | Add decoding connection messages | Robby Zambito | 6 days |
| | |||
* | Add packet decoding | Robby Zambito | 6 days |
| | | | | Big bug where I was setting the payload length do be the pre-encoded size rather than the encoded size. | ||
* | Small cleanup | Robby Zambito | 6 days |
| | | | | Rename allocator to gpa (general purpose allocator) and move DebugAllocator type out of main | ||
* | Remove unnecessary explicit cast | Robby Zambito | 6 days |
| | | | | Remove unnecessary Self declaration. | ||
* | Specify endianness when writing the header struct | Robby Zambito | 6 days |
| | |||
* | Explicitly specify the size of connection options | Robby Zambito | 6 days |
| | | | | This makes it so specifying the wrong number of options would actually throw a compile time error. | ||
* | Clean up string handling | Robby Zambito | 6 days |
| | |||
* | Make header always a packed struct | Robby Zambito | 6 days |
| | | | | This lets us easily use the same writeStructe(header) pattern to write the header for each message type. | ||
* | Base64 encode relay message | Robby Zambito | 6 days |
| | | | | write the packed connection struct directly instead of each of the fields. | ||
* | Add connection message type | Robby Zambito | 6 days |
| | |||
* | Remove tests | Robby Zambito | 6 days |
| | |||
* | Working with nice union | Robby Zambito | 6 days |
| | | | | This let's us easily use a single type for all Saprus messages, and unwrap the specific type with a switch. | ||
* | it works! | Robby Zambito | 6 days |
| | |||
* | Getting some data but malformed | Robby Zambito | 6 days |
| | | | | | | | This is what the data shows up in the sentinal looking like: 2025/04/02 22:36:32 Error decoding message: Hello darkness my old friend::48656c6c6f206461726b6e657373206d79206f6c6420667269656e64aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa 2025/04/02 22:36:32 INFO: Relay message received: Hello darkness my old friend | ||
* | Add msgs with toBytes functions | Robby Zambito | 6 days |
| | |||
* | Added network dep | Robby Zambito | 6 days |
| | |||
* | Remove lib | Robby Zambito | 6 days |
| | |||
* | Initial commit | Robby Zambito | 6 days |