Package Certificates:

- fix bug with cert type marshall/unmarshall
- add old config to allow retro compatibility
- add new type function to retrieve a tls root ca cert instead of a slice of string to get root ca

Package HTTPCli:
- fix default DNS Mapper
- optimze global DNS Mapper
- fix non closing sub goroutine

Package HTTPCli/DNS-Mapper:
- change request function of Root CA with function of root ca cert instance
- add function to return a root ca cert from a function that return a slice of root ca string

Package Config/Components:
- httpcli: bump sub package of certificate, httpcli
- httpcli: adjust code following bump
- httpcli: change request function of Root CA with function of root ca cert instance
- httpcli: add function to return a root ca cert from a function that return a slice of root ca string
- tls: change request function of Root CA with function of root ca cert instance
- tls: add function to return a root ca cert from a function that return a slice of root ca string

Package IOUtils/mapCloser:
- fix bug with mapcloser not stopped
- optimize code & goroutine

Package Logger:
- rework mapCloser call
- optimize mapClaoser managment

Package Request:
- rework error managment
- using []byte instead of buffer to read response body
- add free capability
- optimize memory consumption

Package Socket / Server:
- add filtering error capability
- add params to specify a function called on each new connection and before using the connection
- the new function param allow to update the network incomming connection (like buffer, deadline...)
- rework some useless atomic to direct value to optimize code

Package Socket/Delim:
- rework to optimize memory & variable use
- remove capabilities of update the instance when running, prefert recreate new one if necessary

Other:
- bump dependencies
- minor bug / fix
This commit is contained in:
Nicolas JUHEL
2025-01-06 11:32:54 +01:00
parent 22b364593e
commit 61a73ba606
67 changed files with 1220 additions and 527 deletions

View File

@@ -46,6 +46,7 @@ import (
// New creates a new server based on the provided network protocol.
//
// Parameters:
// - upd: a Update Connection function or nil
// - handler: the handler for the server
// - delim: the delimiter to use to separate messages
// - proto: the network protocol to use
@@ -56,26 +57,26 @@ import (
// Return type(s):
// - libsck.Server: the created server
// - error: an error if any occurred during server creation
func New(handler libsck.Handler, proto libptc.NetworkProtocol, address string, perm os.FileMode, gid int32) (libsck.Server, error) {
func New(upd libsck.UpdateConn, handler libsck.Handler, proto libptc.NetworkProtocol, address string, perm os.FileMode, gid int32) (libsck.Server, error) {
switch proto {
case libptc.NetworkUnix:
if strings.EqualFold(runtime.GOOS, "linux") {
s := scksrx.New(handler)
s := scksrx.New(upd, handler)
e := s.RegisterSocket(address, perm, gid)
return s, e
}
case libptc.NetworkUnixGram:
if strings.EqualFold(runtime.GOOS, "linux") {
s := sckgrm.New(handler)
s := sckgrm.New(upd, handler)
e := s.RegisterSocket(address, perm, gid)
return s, e
}
case libptc.NetworkTCP, libptc.NetworkTCP4, libptc.NetworkTCP6:
s := scksrt.New(handler)
s := scksrt.New(upd, handler)
e := s.RegisterServer(address)
return s, e
case libptc.NetworkUDP, libptc.NetworkUDP4, libptc.NetworkUDP6:
s := scksru.New(handler)
s := scksru.New(upd, handler)
e := s.RegisterServer(address)
return s, e
}