Sponsored Content
Full Discussion: Sampling pcap file
Top Forums Shell Programming and Scripting Sampling pcap file Post 302471453 by sajal.bhatia on Friday 12th of November 2010 09:33:33 PM
Old 11-12-2010
Hi,

Can you explain a bit how this works?

What does this Global IP mean ??

Thanks!
 

7 More Discussions You Might Find Interesting

1. Programming

Compiling Pcap.c

I don't know if this is the correct forum to post this but hopefully someone can atleast point me in the right direction if they can't help me. I am trying to install the Net::Pcap module for perl from Tim Potter version .04. I have installed gcc 2.95.3 on my Solaris 8 box. I am sure it's just... (6 Replies)
Discussion started by: TioTony
6 Replies

2. Programming

pcap.h

I cant use pcap.h include file. How can I do so? :confused: (8 Replies)
Discussion started by: Pervez Sajjad
8 Replies

3. Programming

Pcap.h Sniffing

Can someone please help me figure out how to use pcap.h to sniff packets between only 2 computers whose mac addresses are know? Thanks (0 Replies)
Discussion started by: papabearcares
0 Replies

4. Shell Programming and Scripting

Pcap.h Sniffing

Can someone please help me figure out how to use pcap.h to sniff packets between only 2 computers whose mac addresses are know? Thanks (0 Replies)
Discussion started by: papabearcares
0 Replies

5. Shell Programming and Scripting

Sampling and Binning- Engineering problem

Hi everyone! Can you please help me with some shell scripting? I have an input file input.txt It has 3 columns (Time, Event, Value) Time event Value 03:38:22 A 57 03:38:23 A 56 03:38:24 B 24 03:38:25 C 51 03:38:26 B 7 03:38:26 ... (7 Replies)
Discussion started by: Needhelp2
7 Replies

6. Shell Programming and Scripting

data sampling

I have a requirement where I have multiple flat file sources. I need to create sample data from each source. Example: Source 1 has 10 flat files-- member, transaction,item,email,....etc Now if I get any 10 records (say first 10 records) from the member flat file, I need to find those matching... (2 Replies)
Discussion started by: arrivederci
2 Replies

7. Programming

printing out information from pcap file

Hi Folks, i got the following Problem: I want to make an analysis on a pcap file. (diestance between different packets and so on) The difficulty now... it's not a simple Ethernet/ IP/ File, but it's a SS7 file. There are the Layers MTP2 MTP3 and ISUP. My analysis depends on the ISUP Layer. Now... (0 Replies)
Discussion started by: thisismyname
0 Replies
erl_global(3erl)						C Library Functions						  erl_global(3erl)

NAME
erl_global - Access globally registered names DESCRIPTION
This module provides support for registering, looking up and unregistering names in the Erlang Global module. For more information, see the description of Global in the reference manual. Note that the functions below perform an RPC using an open file descriptor provided by the caller. This file descriptor must not be used for other traffic during the global operation or the function may receive unexpected data and fail. EXPORTS
char ** erl_global_names(fd,count) Types int fd; int *count; Retrieve a list of all known global names. fd is an open descriptor to an Erlang connection. count is the address of an integer, or NULL. If count is not NULL, it will be set by the function to the number of names found. On success, the function returns an array of strings, each containing a single registered name, and sets count to the number of names found. The array is terminated by a single NULL pointer. On failure, the function returns NULL and count is not modified. Note: It is the caller's responsibility to free the array afterwards. It has been allocated by the function with a single call to malloc() , so a single free() is all that is necessary. int erl_global_register(fd,name,pid) Types int fd; const char *name; ETERM *pid; This function registers a name in Global. fd is an open descriptor to an Erlang connection. name is the name to register in Global. pid is the pid that should be associated with name . This is the value that Global will return when processes request the location of name . The function returns 0 on success, or -1 on failure. int erl_global_unregister(fd,name) Types int fd; const char *name; This function unregisters a name from Global. fd is an open descriptor to an Erlang connection. name is the name to unregister from Global. The function returns 0 on success, or -1 on failure. ETERM * erl_global_whereis(fd,name,node) Types int fd; const char *name; char *node; fd is an open descriptor to an Erlang connection. name is the name that is to be looked up in Global. If node is not NULL, it is a pointer to a buffer where the function can fill in the name of the node where name is found. node can be passed directly to erl_connect() if necessary. On success, the function returns an Erlang Pid containing the address of the given name, and node will be initialized to the node- name where name is found. On failure NULL will be returned and node will not be modified. Ericsson AB erl_interface 3.7.3 erl_global(3erl)
All times are GMT -4. The time now is 04:16 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy