GithubHelp home page GithubHelp logo

go-tcap's People

Contributors

bf-cortex avatar dependabot-preview[bot] avatar dependabot[bot] avatar wmnsk avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar

go-tcap's Issues

Having trouble with doing a InitialDPArgs request (CAMELv2)

Hi, I'm not sure if I'm doing this incorrectly, but using the library, I am try to send the following HEX byte string that is ASN1 encoded.

307180016e83078313873881620385010a8a058493527008bb0580038090a39c01029f320836155030868778f0bf3417020100810791527088113046a309800736f50100f1026fbf35038301119f3605dad1c900079f3707915270881130469f38068170880804199f39080242100341402080

I was expecting that wireshark would be able to successfully decode the payload, but instead it failed
Expected,
image
But got the following,
image

Here is the code snippet I used to generate the tcapPayload...

	hexString := "307180016e83078313873881620385010a8a058493527008bb0580038090a39c01029f320836155030868778f0bf3417020100810791527088113046a309800736f50100f1026fbf35038301119f3605dad1c900079f3707915270881130469f38068170880804199f39080242100341402080"

	p, err := hex.DecodeString(hexString)
	if err != nil {
		fmt.Println("Error decoding hex string:", err)
		return
	}

	tcapPayload := tcap.NewBeginInvokeWithDialogue(
		uint32(*otid),     // OTID
		tcap.DialogueAsID, // DialogueType
		uint8(50),
		1, // ACN Version
		0, // Invoke Id
		0, // OpCode
		p, // Payload
	)

Am I missing a setting or flag to be set?

Any assistance will be greatly appreciated. I am fairly new to SCCP/TCAP/CAMELv2, so please excuse any ignorance or strange questions.

Many thanks,
Danie

Failure on missing protocol version

It looks like if no protocol version is defined this function will fail to correctly process the rest of the bytes

go-tcap/dialogue-pdu.go

Lines 438 to 445 in 08bd257

func (d *DialoguePDU) parseAAREFromBytes(b []byte) error {
var err error
var offset = 2
d.ProtocolVersion, err = ParseIE(b[offset:])
if err != nil {
return err
}
offset += d.ProtocolVersion.MarshalLen()

how to run client

I am new to go and following your instruction to run client. I am getting this error below:
go-tcap/examples/client# ./client -h
bash: ./client: No such file or directory

ASN1 length long length issue.

ASN1 has 2 implementations for the data length.

  • short ( < 127 )
  • long ( > 127 )

then the IE value length is greater than 127 it still encodes/decodes the length in the shorter implementation thus not able to communicate with any other ASN1 service.

Sample project

I suggest to have simple client/server project for go-tcap package,
it will be easy to new comers to understand and use that package

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.