Update README.md
This commit is contained in:
parent
b11ecd51c5
commit
64fd480954
1 changed files with 4 additions and 2 deletions
|
@ -23,10 +23,12 @@ int bsize[]; //int[1] that contains the real bytes size (Use it whenever using t
|
||||||
* m_decapsulate(&a,"udp"); //Removes udp protocol and its address
|
* m_decapsulate(&a,"udp"); //Removes udp protocol and its address
|
||||||
* Now the string is: /ip4/192.168.1.1/
|
* Now the string is: /ip4/192.168.1.1/
|
||||||
* m_encapsulate(&a,"/tcp/8080");
|
* m_encapsulate(&a,"/tcp/8080");
|
||||||
* Now the string is: /ip4/192.168.1.1/tcp/8080/
|
* Now the string is: /ip4/192.168.1.1/tcp/8080/
|
||||||
|
|
||||||
# Constructing a multiaddress from bytes:
|
# Constructing a multiaddress from bytes:
|
||||||
|
|
||||||
* struct maddr beta;
|
* struct maddr beta;
|
||||||
* beta=new_maddr_fb(a.bytes,a.bsize[0]); //This will already construct back to the string too!
|
* beta=new_maddr_fb(a.bytes,a.bsize[0]); //This will already construct back to the string too!
|
||||||
* printf("B STRING: %s\n",beta.string); //So after encapsulation and decapsulation atm this string would
|
* printf("B STRING: %s\n",beta.string); //So after encapsulation and decapsulation atm this string would
|
||||||
* contain: /ip4/192.168.1.1/tcp/8080/
|
* contain: /ip4/192.168.1.1/tcp/8080/
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue