smpp icon indicating copy to clipboard operation
smpp copied to clipboard

Go library for SMPP 3.4

Results 15 smpp issues
Sort by recently updated
recently updated
newest added

Hi, I'm implementing an SMPP server, and my server is waiting for ESME connections. So I wrote the following handler : ```go sessConf := smpp.SessionConf{ SystemID: systemID, Handler: smpp.HandlerFunc(func(ctx *smpp.Context)...

Hello, In `session.go`, in `makeTransition()` function, there's a mistake in the case « If sending from SMSC or receiving on ESME ». In this case and for `StateBoundTRx`, the `pdu.DeliverSmID`...

Hi , Memory is getting increased when client connection happens.i.e; when Newsession is created... Note: Only Connection No bind. Please find the below memory profile using pprof for reference [memissue.pdf](https://github.com/ajankovic/smpp/files/4286417/memissue.pdf)...

Hi, when a message with invalid PDU is submitted, session is shutting down but we want resp,err to be returned without session shutdown. How to handle it?? Thanks in advance