aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)AuthorFilesLines
2004-06-12From Ainsley Pereira: add a text description PT_CN_OLD.Guy Harris2-1/+3
svn path=/trunk/; revision=11144
2004-06-12On Windows, if "get_interface_list()" returns CANT_GET_INTERFACE_LISTGuy Harris7-20/+74
and the error message includes "Not enough storage is available to process this command" or "The operation completed successfully", suggest that the user install a WinPcap version later than 3.0 - this is definitely a Frequently Asked Question on the Ethereal list. svn path=/trunk/; revision=11143
2004-06-12From Jean-Baptiste Marchand:Guy Harris2-9/+481
- NetrJoinDomain2 and NetrUnJoinDomain2 (can be used to remotely join a machine to an Active Directory domain, typically with the JOIN and UNJOIN of the netdom utility) - NetrRenameMachineInDomain2 - NetrAddAlternateComputerName and NetrRemoveAlternateComputerName (operations added in Windows XP) All these operations carry a blob (524 bytes) containing an encrypted version of the password of the account with domain administration credentials, currently displayed as hex data because the format of this blob is currently unknown (at least, for me). svn path=/trunk/; revision=11142
2004-06-12update asn1 compiler to (hopefully) handle BER SET OF constructsRonnie Sahlberg1-3/+8
svn path=/trunk/; revision=11141
2004-06-12Parameter 8 to dissect_ber_bistring() is the ett_ variable (or -1) and notRonnie Sahlberg1-3/+3
a NULL **proto_tree pointer. Set the ett variable to always be -1 for the time being svn path=/trunk/; revision=11140
2004-06-12From Tomas Kukosa updates to the ASN1 compilerRonnie Sahlberg1-5/+12
Change doc string to not specificly state it is for PER Temporary/Partial fix for the tag of impoerted types. svn path=/trunk/; revision=11139
2004-06-11Hack to remove epan/config.hJörg Mayer1-1/+3
svn path=/trunk/; revision=11138
2004-06-11fix the presentation of readcapacity to show the real number of MB or GB ↵Ronnie Sahlberg1-5/+13
instead of just a random fake value. svn path=/trunk/; revision=11137
2004-06-10Move "dfilter_expr_dlg_delete_event_cb()" afterGuy Harris1-10/+10
"dfilter_expr_dlg_cancel_cb()" to avoid use-before-declaration warnings. svn path=/trunk/; revision=11136
2004-06-10some more encryption types and checksum typesRonnie Sahlberg1-2/+78
svn path=/trunk/; revision=11135
2004-06-10From Laurent Rabret:Guy Harris1-2/+191
- associate standard trace file extensions to ethereal *only* if such extensions are not already known in the system; - suppress the linking while Ethereal is uninstalling *only* for extensions associated to Ethereal. svn path=/trunk/; revision=11134
2004-06-10"delete_event" is an event, so its handler takes three arguments, notGuy Harris4-43/+65
two, and it returns a gboolean. svn path=/trunk/; revision=11133
2004-06-10From Stas Grabois: don't show disabled protocols in the "Add Expression"Guy Harris3-2/+18
and "Decode As" dialogs (so that you can cut down the size of the protocol lists in those dialogs by disabling "uninteresting" protocols). svn path=/trunk/; revision=11132
2004-06-10Move the ring-buffer tests from "process_packet()" toGuy Harris1-58/+48
"capture_pcap_cb()"; they're only done in live captures, and that arranges that "process_packet()" gets called with the correct wtap_dumper for the current file even if we switch to a new file. Move the packet-count reporting out of "write_packet()" to "capture_pcap_cb()" as well, as that's also only done in live captures. That pretty much guts "write_packet()", so just move what's left up to "process_packet()". svn path=/trunk/; revision=11131
2004-06-09Remove config.nmake dependencies from epan/Makefile.am and gtk/Makefile.am.Gerald Combs2-4/+4
svn path=/trunk/; revision=11130
2004-06-09DCERPC problem reported by JBM and identified by Todd SabinRonnie Sahlberg3-54/+88
Other protocol, not only SMB will populate pinfo->private_data thus checking for existence of non-NULL pinfo->private_data is not sufficient to determine we have SMB data and this is what it is. Refactor the adding of salt/FID from lower layer protocols and generalize it. Create a new dissector_handle specific for SMB so that we know that IFF we came in through that handle, then whatever pinfo->private_data is what we expect it to be. svn path=/trunk/; revision=11129
2004-06-09Add Automake/Autoconf Doxygen targets.Gerald Combs3-4/+35
svn path=/trunk/; revision=11128
2004-06-08add details for doxygenUlf Lamping1-14/+37
svn path=/trunk/; revision=11127
2004-06-07Add an encapsulation type for BACnet MS/TP, and map the newly-assignedGuy Harris3-4/+10
libpcap DLT_ value for BACnet MS/TP to it. svn path=/trunk/; revision=11126
2004-06-07Don't define or set "txt" in "text_page_redraw()" for GTK+ 2.x, as weGuy Harris1-1/+3
don't use it in that case. svn path=/trunk/; revision=11125
2004-06-07update to the asn1 compiler.Ronnie Sahlberg1-6/+1
Do not output the value definitions for enumerated integers twice. the c compiler doesnt like when the same symbol is declared twice. svn path=/trunk/; revision=11124
2004-06-06Add a "force_separators" parameter to hex_str_to_bytes so that it'sGerald Combs4-15/+97
possible to paste in WEP keys without any separators. Add doxygen comments to strutil.h. svn path=/trunk/; revision=11123
2004-06-05add more details for doxygenUlf Lamping3-8/+5
svn path=/trunk/; revision=11122
2004-06-05add more details for doxygenUlf Lamping4-41/+70
svn path=/trunk/; revision=11121
2004-06-05Yaniv Kaul: Add some more UUID decoding on WindowsJörg Mayer1-1/+13
svn path=/trunk/; revision=11120
2004-06-05add more details for doxygenUlf Lamping1-3/+3
svn path=/trunk/; revision=11119
2004-06-05alyways use SIGNAL_EMIT_BY_NAME with one user parameter,Ulf Lamping3-21/+9
remove SIGNAL_EMIT_BY_NAME1 completely svn path=/trunk/; revision=11118
2004-06-05remove gtk_widget_ref / OBJECT_SET_DATA_FULL,Ulf Lamping2-87/+2
as reference handling is done by GTK, so doing it is pretty useless svn path=/trunk/; revision=11117
2004-06-05Rename the type UCTTime to UTCTime as per X.680Ronnie Sahlberg2-5/+5
get rid of a compiler warning. svn path=/trunk/; revision=11116
2004-06-05cut text_page related things from help_page.c andUlf Lamping4-154/+215
move into new file text_page.c svn path=/trunk/; revision=11115
2004-06-05from tomas anders more packetcable stuffRonnie Sahlberg1-45/+152
new protocol : PacketCable MTA FQDN svn path=/trunk/; revision=11114
2004-06-05from JBM: updates to SAMR and LSARonnie Sahlberg2-30/+99
svn path=/trunk/; revision=11113
2004-06-04Make the definition of "simple_dialog()" match its declaration.Guy Harris2-5/+5
Make the "type" argument to "vsimple_dialog()" also be an ESD_TYPE_E. svn path=/trunk/; revision=11112
2004-06-04bugfix: when saving connectionless DCERPC fragments,Ulf Lamping1-2/+4
add a hashed activity_id to the sequence number. This will prevent missdissected fragments. svn path=/trunk/; revision=11111
2004-06-04add more details for doxygenUlf Lamping23-34/+78
svn path=/trunk/; revision=11110
2004-06-04add details for doxygenUlf Lamping2-44/+117
svn path=/trunk/; revision=11109
2004-06-04update DOXYGEN setting and add new HHC (MS html help compiler) settingUlf Lamping1-3/+21
svn path=/trunk/; revision=11108
2004-06-04add more details for doxygenUlf Lamping12-96/+251
svn path=/trunk/; revision=11107
2004-06-04use the dot toolUlf Lamping1-2/+2
svn path=/trunk/; revision=11106
2004-06-04get rid of a compiler warningRonnie Sahlberg5-9/+9
svn path=/trunk/; revision=11105
2004-06-04Tomas updates to H235 and the ASN2ETH compilerRonnie Sahlberg4-123/+31
svn path=/trunk/; revision=11104
2004-06-04From Devin Heitmueller: Fix some compilation warnings.Gerald Combs1-3/+1
svn path=/trunk/; revision=11103
2004-06-04As Mark Corley pointed out, win32-setup.sh should be part of the distribution.Gerald Combs1-7/+8
svn path=/trunk/; revision=11102
2004-06-04Add a mechanism where one can provide callbacks to the kerbgeros dissectorRonnie Sahlberg7-29/+142
to pass back dissection of application specific fields (octet strings) This can later be used to pick up session keys by dcerpc and similar. Currently it will initially be used by packetcable. PacketCable additions by Thomas Anders svn path=/trunk/; revision=11101
2004-06-04Fix crash bug in sid snooping if we don't have a policy name for aTim Potter1-1/+4
handle in a samr_query_dispinfo. svn path=/trunk/; revision=11100
2004-06-04New protocol : DNPRonnie Sahlberg3-1/+778
From Graham Bloice svn path=/trunk/; revision=11099
2004-06-04Fix bug to do with renaming lsa.domain_sid to nt.domain_sid to getTim Potter1-6/+6
sid snooping working again. svn path=/trunk/; revision=11098
2004-06-03add dissection of the ms rap netserverenum3 functionRonnie Sahlberg1-1/+30
svn path=/trunk/; revision=11097
2004-06-03Make static some routines and variables not used outside the source fileGuy Harris8-361/+410
defining them. Move declarations of some callbacks outside the source files using them into the appropriate header, and arrange that the appropriate header is included by those source files. Move the SAT_E definition into a "sat.h" file, included both by "endpoint_talkers_table.h" and "hostlist_table.h", so that both of the latter headers can be included by the same file ("menu.c" has to include both, as per the change in the previous paragraph). svn path=/trunk/; revision=11096
2004-06-03"gtk_file_selection_set_filename()" doesn't work with a GtkFileChooser,Guy Harris1-3/+4
and "gtk_file_chooser_set_filename()" requires an absolute path, so "" isn't valid. Get rid of the "gtk_file_selection_set_filename()" call in "file_selection_new()". Put in a comment asking why we're using "gtk_file_selection_set_filename()" at all. svn path=/trunk/; revision=11095