Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
github.com/grspectre/smpp
smpp is library contains implementation of SMPP 3.4 protocol.
It allows easier creation of SMPP clients and servers by providing utilities for PDU and session handling.
Although usable, project is still to be considered as WORK IN PROGRESS until it reaches it's first official version. Util then breaking API to fix possible design flaws is possible.
Smpp protocol integrity is enforced with the use of session states.
Allow communication over tcp protocol.
Pdu data structure should have access to all of it's elements.
When client and server are connected session is created.
When connection is terminated or unbinding is finished session is closed.
Closing can be completed only after graceful handling of all remaining operations.
Request window is the number of sent requests during a session that are waiting for the matching response from the other side.
Size of the window is configurable if window is closed send should fail.
Sending should timeout if response is not received in configured amount of time.
Sender should wait for responses only for requests that have matching responses defined by the spec.
Client should have an option to listen for outbind requests from server.
Server should be able to rate limit client's requests.
Session should handle sequence numbers.
Provide logging for critical paths.
Sessions should be uniquely identifiable.
Helpers for sending enquire_link in regular intervals.
If an SMPP entity receives an unrecognized PDU/command, it must return a generic_nack PDU indicating an invalid command_id in the command_status field of the header.
Provide stats about running session(s):
Support all PDU commands defined by the specification.
Helper functions for common tasks.
You can use go get:
go get -u github.com/grspectre/smpp
In order to do any kind of interaction you first need to create an SMPP Session. Session is the main carrier of the protocol and enforcer of the specification rules.
Naked session can be created with:
// You must provide already established connection and configuration struct.
sess := smpp.NewSession(conn, conf)
But it's much more convenient to use helpers that would do the binding with the remote SMSC and return you session prepared for sending:
// Bind with remote server by providing config structs.
sess, err := smpp.BindTRx(sessConf, bindConf)
And once you have the session it can be used for sending PDUs to the binded peer.
sm := smpp.SubmitSm{
SourceAddr: "11111111",
DestinationAddr: "22222222",
ShortMessage: "Hello from SMPP!",
}
// Session can then be used for sending PDUs.
resp, err := sess.Send(p)
Session that is no longer used must be closed:
sess.Close()
If you want to handle incoming requests to the session specify SMPPHandler in session configuration when creating new session similarly to HTTPHandler from net/http package:
conf := smpp.SessionConf{
Handler: smpp.HandlerFunc(func(ctx *smpp.Context) {
switch ctx.CommandID() {
case pdu.UnbindID:
ubd, err := ctx.Unbind()
if err != nil {
t.Errorf(err.Error())
}
resp := ubd.Response()
if err := ctx.Respond(resp, pdu.StatusOK); err != nil {
t.Errorf(err.Error())
}
}
}),
}
Detailed examples for SMPP client and server can be found in the examples dir.
FAQs
Unknown package
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.