64bit ldap csdk5.08  does not work on SunOS5.10?

We are using 64bit ldap csdk5.08 on SunOS5.10. But it do't work.
We wrote a simple client program that connects using ldap_simple_bind_s() function. When I run the code it gives an error saying 'Can't connect to the LDAP server - Connection refused' .
At the same time using snoop to capture network packages on the ldap server , it shows no package received at all.
But if we use 32bit ldap library, the program works well and no error is raised.
And the 64bit ldap tool ldapsearch also works well, it can search data from the server successfully.
Our sample code:
==================================================
#include <ldap.h>
#include <stdio.h>
int
main( int argc, char **argv )
     LDAP *ld;
     int rc;
     /* Get a handle to an LDAP connection. */
     if ( (ld = ldap_init( "150.236.42.53", 38902)) == NULL )
          perror( "ldap_init" );
          return( 1 );
     /* Bind anonymously to the LDAP server. */
     rc = ldap_simple_bind_s( ld, NULL, NULL );
     if ( rc != LDAP_SUCCESS )
          ldap_perror(ld, "ldap_simple_bind_s:");
     return( 1 );
====================================================
Any comments?

This looks like a mismatch between C-sdk libraries and Solaris native libraries.
Are you sure your program loads the correct libraries ?
Ludovic.

Similar Messages

  • GRC 10.0: Access Request Creation - LDAP user advanced search not working

    Dear Experts,
    We are implementing SAP GRC Access Control and we have an issue in Access Request Creation. If we put the user name in “User” field and press intro, the user details are updated, but if we want to make an "Advanced search" the user is not found and the application give us the following message: “No records found for the search criteria entered.”
    Scenario 1: If we put the user name in “User” field and press intro, the user details are updated:
    Scenario 2: If we want to make an "Advanced search" the user is not found and the application give us the following message: “No records found for the search criteria entered.”
    We are using the Active Directory as Data Source.
    Thanks and Regards.

    Hi Jose,
    Try maintaning the parameter 2050 as YES and check once.
    Kindly, also make refer to  the below list of SAP notes:
    1757906 - GRC 10.0 - LDAP user search does not work in NWBC
    1745370 - LDAP search in GRC does not work anonymously
    1718242- UAM: User search not working in Access Request.
    Regards,
    Neeraj Agarwal

  • Scrolling does not work in LR

    I've been frustrated by this for a while now. When in LR (currently on version 4.2, but same thing happens in earlier versions too), scrolling does nothing. If i'm trying to scroll up or down a panel, nothing happens.
    I'm on a Lenovo W701 running Win & 64bit. The scrolling does not work using either the track point or the touchpad.
    The work properly in all other applications.
    The pointer will change to an icon the represents scrolling while in LR, but nothing happens. Any thoughts or suggestions?
    If there is any other information that you might need, let me know.
    Thanks!
    Quinn

    What about a mouse? Does the wheel scroll?
    Sent from phone.

  • Installing Firefox with windows 7 64bit mode just does not work.

    I have windows 7 64bit mode. I cannot install firefox, it crashes all the time when I open it. I know the problem is because my windows 7 is in 64bit mode. Can you (firefox support) or someone on this forum provide the simple and easy steps of getting it to work. Also can you (firefox) hurry up and release a 64bit version. I'm using google chrome and crazy browser as they seem to have no problems at all. I really want to use firefox but it just won't set up for me because I'm running win7 64bit mode. If I was running win7 32bit mode I wouldn't be having any issues. Has anyone out there got a simple step by step solution for this? It it mind boggling that with todays technology no one has a simple fix for this issue. Help!!!!!
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 6.1; en-US) AppleWebKit/533.4 (KHTML, like Gecko) Chrome/5.0.375.70 Safari/533.4

    I have been running Win 7 64 bit on an HP Pavilion lap for several months. The whole browser thing has been a nightmare. My work involves heavy duty internet research. Firefox crashes every few minutes. There is no specific event I can find that kicks this off, but running the latest Flash Players and Adobe Reader makes it a lot worse. In fact, I had to set up the adobe reader to not run within the Firefox window. I had to back off to an old version of adobe Reader and Flash Player to accomplish this. I love Firefox. I was disappointed to have to uninstall it as it was impossible to run searches with it.
    So then it proved to be that IE either version 8 or 9 was even worse. I could not keep it up long enough to run a search.
    So I installed Chrome which has some nice features, but it also crashes, albeit more gracefully so I do not lose my place and it makes a quick recovery but there are many online applications where Chrome just does not work.
    My son also has Win7 64 bit and says he is also having the same problems.
    I want my Firefox back! Please fix it.

  • CF10 64bit  Apache connector (mod_jk.so) does not work for Apache2.4.3 (windows)

    CF10 64bit  Apache connector (mod_jk.so) does not work for Apache2.4.3 (win64), where can I get a module that works?
    I get this error from Apache :
    C:\www\Apache2.4\bin>httpd -t
    httpd: Syntax error on line 741 of C:/www/Apache2.4/conf/httpd.conf: Syntax error on line 2 of C:/www/Apache2.4/conf/mod_jk.conf: Cannot load C:\\ColdFusion10\\config\\wsconfig\\1\\mod_jk.so into server: The specified procedure could not be found.
    I have already tried manually extracting the pre-built mod_jk22.so from the wsconfig.jar with same results.
    If I switch to Apache 2.2.22 64bit, it does work.  what I need is to be able to run on Apache 2.4.

    Please check out this link.
    http://rob.brooks-bilson.com/index.cfm/2012/2/21/Installing-ColdFusion-10-with-Apache-on-W indows
    In this link, they are configuring with Apache 2.2 only.
    When we were working colfusion 9 with Linux and apache, we had the same problem, it will work when it connect to Apache 2.0 but not with Apache 2.2 version.

  • HELP: Can not connect LDAP server with 64bit ldap csdk5.08 on Solaris10

    We are using 64bit ldap csdk5.08 on SunOS5.10. But it doesn't work.
    We wrote a simple client program that connects using ldap_simple_bind_s() function. When I run the code it gives an error saying 'Can't connect to the LDAP server - Connection refused' .
    At the same time using snoop to capture network packages on the ldap server , it shows no package received at all.
    But if we use 32bit ldap library, the program works well and no error is raised.
    And the 64bit ldap tool ldapsearch also works well, it can search data from the server successfully.
    The sample code:
    ==================================================
    #include <ldap.h>
    #include <stdio.h>
    int
    main( int argc, char **argv )
         LDAP *ld;
         int rc;
         /* Get a handle to an LDAP connection. */
         if ( (ld = ldap_init( "150.236.42.53", 38902)) == NULL )
              perror( "ldap_init" );
              return( 1 );
         /* Bind anonymously to the LDAP server. */
         rc = ldap_simple_bind_s( ld, NULL, NULL );
         if ( rc != LDAP_SUCCESS )
              ldap_perror(ld, "ldap_simple_bind_s:");
         return( 1 );
    }

    This looks like a mismatch between C-sdk libraries and Solaris native libraries.
    Are you sure your program loads the correct libraries ?
    Ludovic.

  • Aero in Windows 7 64bit home premium does not work. Aero display selections are grayed out.

    Aero in Windows 7 64bit home premium does not work. Aero display selections are grayed out.  HP 600-1315xt.
    Have tried everything I can find on internet and here on HP. None of the suggestions worked. Windows fixit for windows could not fixit. Any suggestions are appreciated. I can always use my disks and rebuild the computer. A last resort.

    Hi,
    It might be the graphic driver not compitable with the graphic device.  Has there been a change to the graphic driver?
    One thing you can try is to uninstall graphic driver and download the latest from Windows Update (if you haven't tried this).  Here are the possible steps:
    1.  Go to Control Panel->Hardware and Sound->Device Manager,  uninstall the graphic card driver by right clicking and select "uninstall".  Make sure the option "Delete the driver software for this device" is selected.
    2.  Reboot the system.
    3.  Go to Control Panel->System and Security->Windows Update, click on "Optional updates" and find the driver for g210 and do the update.
    I work on behalf o HP.
    Please click the white Kudos star to say thanks.
    Please click Accept As Solution if you found my response helpful.

  • What if sync with new computer does not work. logical connection to old with WindowsXP, 32 bit version of iTunes. New is Windows7 with 64bit version

    What if sync with new computer does not work?
    logical connection to old with WindowsXP, 32 bit version of iTunes.
    New is Windows7 with 64bit version

    Syncing to a new iTunes library or computer will erase your iPod. Only if you back up your iPod manually before syncing, you can restore your device from that backup again. A manual backup does not include the sync process.
    Do this:
    Disable autosync in iTunes, connect your iPod to your new computer and right click on it in the device list and choose backup. iTunes will backup your iPod without syncing.
    Transfer your purchases the same way, choosing "transfer purchases" this time.
    When you connect your phone for the first time, all media content will be erased. But you can restore your settings and app data from your manual backup afterwards.
    Don't forget to set up at least one contact and event on your new computer to be able to merge calendars and contacts when you sync the iPod for the first time.
    Music is one way only, from the computer to your device, unless you bought the songs in iTunes and transferred your purchases.
    There is 3rd party software out there, but not supported by Apple, see this thread: http://discussions.apple.com/thread.jspa?threadID=2013615&tstart=0
    About backups and what's saved: http://support.apple.com/kb/HT4946
    How to back up and restore:http://support.apple.com/kb/HT1414
    How to download apps for free again:http://support.apple.com/kb/HT2519
    Saving other data is also described here. How to back up your data and set up as a new device
    If your iPod can't be recognized by Windows, try these tips: iOS: Device not recognized in iTunes for Windows

  • Hello! I have installed Photoshop on PC WIN 7 64bit. When I store first time a Photoshop docuument, it works fine - after re-opening and doing changes I trying again to store it - it does not work anymore! First it does not accept the name (message "It ca

    Hello! I have installed Photoshop on PC WIN 7 64bit. When I store first time a Photoshop docuument, it works fine - after re-opening and doing changes I trying again to store it - it does not work anymore! First it does not accept the name (message "It can not be stored because the nam is invalid" With 2. trial it tells me that the data is blocked and I don't have the rights - and I should chenge them. But I am working as the Admin on my PC - and each trial to change the rights of the data is as well not possible because of missing rights - even I am Admin! I must always store the data with a new name, then it works, but I also cannot remove the old datas or shift them into the waste paper - because of no rights! -- sorry for not perfect english, I am German native speaker! Tahnks a lot for help!

    Hi,
    I am using a Nvidia 4200M adapter in my Laptop, Driver 266.96, Direct X 11
    In my desktop I am using an ATI XFX 6950, latest revision drivers (I am not at home right now so I cant get that info).
    The issue I did describe above, but it was a long explanation.
    In some flash games the game files load initially and get as far as the "click to start" button. Then the flash area usually goes either all white or all black (usually depending on the falsh game default background color) and then it stays that color. Cant see anything after hitting start (usually most games have an intro video or animation before the game starts, but I cant see any of it.
    For the very few games that do start, the flash game or application does not seem to work correctly in that when the rare game starts, it wont save any game files or save files to the pc and so if I exit the game (navigate away to another page or close browser) and then later come back, even though I click the option to save games (and ensure that the flash application slider shows it can save files and lots of space) it does not save and I have to start from the beginning all the time.
    More explanation I gave above.

  • Lenovo OneKey Recovery for Windows 7 64bit does not work

    Does anyone have a patch or new release link for Lenovo OneKey Recovery? I recently bought a G450 and Win 7 Ultimate-64bit separately, there is no link available in the support and download page under this model yet. I tried installing the Vista 64 bit version and still does not work as well. I did a clean install downloaded the drivers from the Lenovo support page.
    Solved!
    Go to Solution.

    You haven't provided a link to the page you are trying to download from. On top and at the right of most download pages there should be a red loud speaker next to the print page button, just click on it in order to report a faulty download or possible other problems with the page.
    Is the following page the page you were trying to download from? If so you can submit direct feedback if the download doesn't work for you.
    http://support.lenovo.com/en_US/downloads/detail.p​age?DocID=DS009179
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • Cameras does not work with my T510i on WIn 7 64bit SP1

    Hi,
    first noticed that Fn-F6 app say all the time that my built-in camera is used by another program (in fact it means just that it cannot access the video preview). Then bought USB camera from Microsoft and it appearad that any video camera connected to my T510i does not work!
    Except Skype - all of them works fine in Skype.
    As I further examined the problem is with the DirectShow rendering wrong filter graph when accessing any of the cameras registered in the system.
    Error config:
    Filter Graph:
    [Integrated Camera (Przechwyt.)] --> [(Input) Sample Grabber]
    [Sample Grabber (Output)] --> [(XForm In) AVI Decompressor]
    [AVI Decompressor (XForm Out)] --> [(Input) Color Space Converter]
    [Color Space Converter (XForm Out)] --> [(VMR Input0) VMR9]
    Working config (I've made recovery and clean install with all windows updates):
    Filter Graph:
    [Integrated Camera (Przechwyt.)] --> [(Input) Sample Grabber]
    [Sample Grabber (Output)] --> [(Input) Color Space Converter]
    [Color Space Converter (XForm Out)] --> [(VMR Input0) VMR9]
    As I have found about DirectSHow filter graphs are not pre-defined but are rendered by the system from the settings and codecs available.  It seeems that there is wrong setting somewhere (possible wrong grabber ouptut setting) that results in inserting unwanted AVI decompressor despite there is no AVI stream there (as I have checked AVI decompressor is quartz.dll which is windows default codec?). According to the graph that works at the output of the grabber there is MPEG2 stream which is correct as all the cameras reports that they have internal MPEG2 encoder (not AVI), which only after color adjustment of the stream is accepted by video renderer.
    How to change or reset to defaults that?

    From your previous post, it sounds like at one point you are getting the pop up that says "installing device driver software," correct?
    If you are not getting this pop up in the lower right hand corner of you screen then I need you to:
    1. Try a different USB port on your computer. Some computer USB ports are "touchy" and if you try a different one it will work. It all depends on the make of the computer.
    2. Try a different USB cable. You might have a bad USB cable. Also, be sure that the USB cable isn't longer than 3ft long.
    3. Go into your device manager and see what printers have been installed. They should be listed under "printers" or "other devices" You might have to go to view and check show hidden devices to see these on your computer. If there is a yellow triangle or question mark on this device then you have a conflict with your computer. This is something in your computer causing this and not the software download.
    Keep me  posted.
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as Accepted Solution

  • Flash player 10.3.1.8.34 (lastest verison)icon on my desktop ,does not work ?

    .I>m using windows7 OS IE9 downloaded and installed fifty times and it always say download and installation was sucessful ,that I"m now using flashplayer 10.5 ect. there is the flashplayer icon sitting right on my desktop .from control panel in programs there is is adobe flash player in the list. every time i click to view a video,says to view this i need to download flash player over and over, I"ve read all the other post.tried all the answers ,been to all support sitesmore than 10 times each I"ve been up all night again it"s now morning  i"m still lost.all help will be appreciated...................................                penny

    Yes all that u sugested i followed from the help and support at adobe.Now i downloaded flashplayer beta 11 and it"s working perfectly .I"m at peace for the moment.In my profile i "ve given my PC model and the whole works on my system.for the record I"m using windows7,IE 9,64bit shockwave is enabled and active xfiltering was disabled it just would not work..
                            thank u very much
    From: ʇɐb ɹəuəllıʍ <[email protected]>
    >To: penny torrence <[email protected]>
    >Sent: Monday, July 25, 2011 8:57 PM
    >Subject: Re: flash player 10.3.1.8.34 (lastest verison)icon on my desktop ,does not work ?
    >
    >
    >1. There is no Flash Player 10.5; the currently available version is 10.3
    >2. What Internet Explorer version are you using: 32-bit or 64-bit?
    >3. What Windows version are you using: 32-bit or 64-bit?
    >4. Have you checked the add-ons on IE9 (Shockwave Flash Object); is it enabled?
    >5. Have you checked ActiveX Filtering on IE9; is it enabled?  (It needs to be disabled.)
    >

  • [XP64] Microphone does not work in WinXP 64

    Hi,In Windows XP 64bit my microphone does not work, tried it in Ventrilo 2., Skype and even in the Windows Recorder. The computer don't detect any sound. Offcourse?I have selected the microphone in the recordering section in the Windows volume panel and the volume at maxium. Also in the volume panel under playback the microphone is not mute, set to max volume. I have also installed WinXP 32bits and here it works OK with exactly the same settings. Thats why I think it is because of my Soundcard driver, I have installed the latest driver from this site. I have a SoundBlaster X-Fi Fatality. Is there anyone with a X-Fi soundcard with the same problem or anyone where the microphone works in WinXP 64bit's Or is it a known problem?Please help me

    Hi Theicewarrior,?Creative support has been aware of this issue for quite some time (6+ months, maybe even a year). The 4GB+?RAM driver/addressing issues are not a priority or they would have been addressed quite some time ago.
    Presumably this is due to functional Vista drivers for the masses being a higher priority than the relati'vely few of us with 4GB+ RAM and an X-Fi.
    While the X-Fi?is a great card, my only wish was that the vendor was forthright about this product not functioning with certain configurations. It is my feeling that?making an effort to help?customers choose?products that will work with their configurations would result in satisfied and repeat customers?and a better bottom line?as opposed to?eeking a few extra dollars out of a slightly larger customer base and?who are then left unsatisfied with a product and unwilling to buy a company's products in the future.Message Edited by Foddan on 07-9-20070:45 AM

  • IChat 4 AV does not work in Leopard

    iChat 4 AV does not work in OS 10.5. iChat 3 worked in OS 10.4.x with no problems. Why the problem?
    I have iMac G5 20-inch with 2.5-gb memory using Motorola SB5101 cable modem provided by ISP Roadrunner (Brighthouse Bakersfield CA).
    I am relatively new to the Apple world (12 months switching from the dark side). I am not a hardware-software engineer. Read discussions, and tried a few things to no avail; eg, no where to set port settings on cable modem.
    It appears most people paid for something that does not work. So, now what? Is Apple working on a fix? If so, any idea when it will be released?

    Got similar problems. Interesting, I can chat with Test Buddies but not to real buddies. Here is the error message:
    Date/Time: 2007-11-09 10:04:30.644 +0200
    OS Version: 10.5 (Build 9A581)
    Report Version: 4
    iChat Connection Log:
    2007-11-09 10:04:03 +0200: AVChat started with ID 32662992.
    2007-11-09 10:04:03 +0200: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2007-11-09 10:04:03 +0200: 0x10ff5840: State change from AVChatNoState to AVChatStateInvited.
    2007-11-09 10:04:17 +0200: 0x10ff5840: State change from AVChatStateInvited to AVChatStateConnecting.
    2007-11-09 10:04:17 +0200: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2007-11-09 10:04:29 +0200: 0x10ff5840: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-11-09 10:04:29 +0200: 0x10ff5840: Error -8 (Did not receive a response from 0x10ff5840.)
    2007-11-09 10:04:29 +0200: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-11-09 10:04:29 +0200: [email protected]: Error -8 (Did not receive a response from 0x10ff5840.)
    Video Conference Error Report:
    859.209385 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    0.392838 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    0.965632 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    0.966509 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    7.099533 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 747
    v=0
    o=dan-paulmedrea 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1005295555
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:312059907
    7.307439 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    7.307679 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    7.357462 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    [v=0
    o=vcm9 0 0 IN IP4 rip
    s=0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1124:2:2160
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3440414635
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:431366814
    7.358418 @SIP/Transport.c:2353 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7514327d7715098f
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    7.766005 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from rip:16402]
    8.079778 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=101080.00, NSDev=1.38%]
    8.436829 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=873079.30, NSDev=2.51%]
    8.823120 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=3173058.20, NSDev=2.84%]
    9.196386 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK1194d6c34f8224f1
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=1838072543
    From: "u0" <sip:user@rip:16402>;tag=1991018852
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    9.197111 @SIP/Transport.c:2353 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK1194d6c34f8224f1
    To: "0" <sip:user@lip:16402>;tag=1838072543
    From: "u0" <sip:user@rip:16402>;tag=1991018852
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    26.645122 @SIP/Transport.c:2353 type=1 (00000000/0)
    [BYE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK189203f968f17316
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    26.858240 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK189203f968f17316
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    179.261714 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 3 returns 1
    179.834273 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    179.848799 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    180.550754 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2458756784
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2067598229
    180.765447 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    180.765742 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    180.837972 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 449
    [v=0
    o=vcm39 0 0 IN IP4 rip
    s=0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:2756655198
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:362565796
    180.838262 @SIP/Transport.c:2353 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK4aa5e3bf08e25310
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    181.247211 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from rip:16402]
    181.560616 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=100874.10, NSDev=1.96%]
    181.870297 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=1201110.60, NSDev=101.47%]
    182.307391 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=3136373.30, NSDev=4.02%]
    203.448331 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK3094acac353a305e
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=1335411467
    From: "u0" <sip:user@rip:16402>;tag=834309359
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    203.449038 @SIP/Transport.c:2353 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK3094acac353a305e
    To: "0" <sip:user@lip:16402>;tag=1335411467
    From: "u0" <sip:user@rip:16402>;tag=834309359
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    206.325829 @SIP/Transport.c:2353 type=1 (00000000/0)
    [BYE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK253b08010f40d542
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    206.535623 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK253b08010f40d542
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    857.209513 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK06d81b3d46cdaf11
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1166564833
    Call-ID: 5e8fe318-8e9a-11dc-ae0c-dd4148874012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2180123230
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1488738594
    857.710250 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK06d81b3d46cdaf11
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1166564833
    Call-ID: 5e8fe318-8e9a-11dc-ae0c-dd4148874012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2180123230
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1488738594
    858.710845 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK06d81b3d46cdaf11
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1166564833
    Call-ID: 5e8fe318-8e9a-11dc-ae0c-dd4148874012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2180123230
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1488738594
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000046 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000091 @:0 type=5 (00000000/16402)
    [Local SIP port]
    9.032366 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 2627 up, 2627 down. (00000000)
    9.038265 @Video Conference/VideoConferenceMultiController.m:1957 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    182.515961 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 2627 up, 2627 down. (00000000)
    182.519862 @Video Conference/VideoConferenceMultiController.m:1957 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    815.539310 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 280 bytes of local IP and port data (7 entries). Remote data was 160 bytes (4 entries).
    843.624494 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 280 bytes of local IP and port data (7 entries). Remote data was 0 bytes (0 entries).
    857.156819 @Video Conference/VideoConferenceMultiController.m:1509 type=5 (00000000/0)
    [Initiate Conference To User Cert Version: u0 with 160 bytes of connection data.
    859.431745 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 280 bytes of local IP and port data (7 entries). Remote data was 0 bytes (0 entries).
    Binary Images Description for "iChat":
    0x1000 - 0x230fff com.apple.iChat 4.0 (601) /Applications/iChat.app/Contents/MacOS/iChat
    0x2a4000 - 0x311fff com.apple.Bluetooth 2.0 (2.0f20) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x35d000 - 0x4aefff com.apple.viceroy.framework 343.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x51c000 - 0x55bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x57d000 - 0x596fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5b0000 - 0x5e9fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x5f9000 - 0x60dfff com.apple.ScreenSaver 2.0 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x61d000 - 0x63bfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x643000 - 0x674fff com.apple.iChatCommonGUI 4.0 (601) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x69b000 - 0x69efff com.apple.BezelServicesFW 1.4.533 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6e9000 - 0x6eefff com.apple.iChat.Styles.Balloons 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x99e3000 - 0x99e6fff com.apple.iChat.Styles.Boxes 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x99ed000 - 0x99f3fff com.apple.iChat.Styles.Compact 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x99fb000 - 0x99fdfff com.apple.iChat.Styles.Text 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0xd3b9000 - 0xd3b9fff liblangid.dylib /usr/lib/liblangid.dylib
    0xd6ce000 - 0xd6cefff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0xd6dd000 - 0xd6defff com.apple.iChat.PersonIconPlugIn 1.0 (601) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0xd8e4000 - 0xd9cafff com.apple.RawCamera.bundle 2.0 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xe0a0000 - 0xe0a5fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xe1de000 - 0xe1e7fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xe1f7000 - 0xe1fafff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xe200000 - 0xe205fff com.apple.audio.AppleHDAHALPlugIn 1.4.0 (1.4.0a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xe268000 - 0xe2d5fff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xe2e4000 - 0xe31ffff com.apple.QuickTimeFireWireDV.component 7.2.1 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe32c000 - 0xe359fff com.apple.QuickTimeIIDCDigitizer 7.2.1 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0xe364000 - 0xe3aefff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0xe3d5000 - 0xe556fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xe584000 - 0xe7eafff com.apple.ATIRadeonX1000GLDriver 1.5.16 (5.1.6) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xe82d000 - 0xe849fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xf9dd000 - 0xfb6afff com.apple.audio.codecs.Components 1.5 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x10334000 - 0x1033bfff com.apple.JavaVM 12.0.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x10ec5000 - 0x10ec8fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x11381000 - 0x11386fff com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x113ca000 - 0x113e6fff com.apple.QuartzComposer.ExtraPatches 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x113f8000 - 0x11415fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1142d000 - 0x1143afff com.apple.QuartzComposer.Backdrops 1.0 (1) /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x117d9000 - 0x117f3fff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x117f8000 - 0x11833fff com.apple.AppleVAFramework 4.0.14 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x119ad000 - 0x119c7fff com.apple.applepixletvideo 1.2.10 (1.2d10) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x12438000 - 0x124aafff com.apple.audio.units.Components 1.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CACodecs
    0x126dc000 - 0x129d7fff com.apple.QuickTimeH264.component 7.2.1 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x12a4f000 - 0x12c45fff net.telestream.wmv.import 2.1.3.10 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x12c76000 - 0x12e27fff net.telestream.wmv.advanced 2.1.3.10 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x12e6a000 - 0x12f81fff www.zygodigital.com ZyGoVideo Pro version 3.5.0.1 Copyright 2004 ZyGoDigital LLC. (3.5.0.1) /Library/QuickTime/ZyGoVideo.component/Contents/MacOS/ZyGoVideo
    0x70000000 - 0x700e3fff com.apple.audio.units.Components 1.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90011fff libz.1.dylib /usr/lib/libz.1.dylib
    0x90012000 - 0x90025fff com.apple.IMUtils 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x90026000 - 0x9004dfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9004e000 - 0x90053fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90054000 - 0x90054fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90055000 - 0x90055fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90056000 - 0x90072fff com.apple.IMFramework 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x90073000 - 0x9007ffff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90080000 - 0x9054cfff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9057e000 - 0x9093cfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9093d000 - 0x9095cfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9095d000 - 0x90987fff libauto.dylib /usr/lib/libauto.dylib
    0x90988000 - 0x909e2fff com.apple.CoreText 2.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x909e3000 - 0x90a6cfff com.apple.framework.IOKit 1.5.0 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90a6d000 - 0x90a7dfff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90a7e000 - 0x90a83fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x90a84000 - 0x90ba8fff com.apple.audio.toolbox.AudioToolbox 1.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90e7f000 - 0x90f63fff com.apple.CoreData 100 (185) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90f64000 - 0x90f75fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x90f76000 - 0x90f7afff com.apple.CoreMediaAuthoringPrivate 1.0.1 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x90f7b000 - 0x90fc0fff com.apple.Metadata 10.5.0 (398) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90fc1000 - 0x91053fff com.apple.ApplicationServices.ATS 3.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91054000 - 0x910b0fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x910b1000 - 0x910b5fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x910b6000 - 0x9132ffff com.apple.Foundation 6.5 (677) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91330000 - 0x91354fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x91355000 - 0x913a2fff com.apple.datadetectorscore 1.0 (52.11) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x913a3000 - 0x91452fff com.apple.DesktopServices 1.4.2 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91453000 - 0x914b0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x914b1000 - 0x91563fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91564000 - 0x9156bfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9156c000 - 0x916c6fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x91705000 - 0x91719fff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9171a000 - 0x91766fff com.apple.QuickLookUIFramework 1.0 (168.0) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x91767000 - 0x91772fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x91773000 - 0x91775fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91776000 - 0x91785fff com.apple.DSObjCWrappers.Framework 1.2 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91786000 - 0x91788fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91789000 - 0x91789fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9178a000 - 0x9184ffff com.apple.QuickTimeMPEG4.component 7.2.1 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x91850000 - 0x9185ffff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x91860000 - 0x91998fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x91999000 - 0x919a3fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x919a4000 - 0x919eefff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x919ef000 - 0x919f0fff libffi.dylib /usr/lib/libffi.dylib
    0x919f1000 - 0x919f7fff com.apple.print.framework.Print 218 (220) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a28000 - 0x91a3efff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91a3f000 - 0x91f54fff com.apple.WebCore 5523.10.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91f55000 - 0x91f6dfff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91f6e000 - 0x92129fff com.apple.QuartzComposer 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9212a000 - 0x9212afff com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9212b000 - 0x92146fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92147000 - 0x92226fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x92227000 - 0x9228cfff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9228d000 - 0x9228dfff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9228e000 - 0x9230dfff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9230e000 - 0x92453fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92454000 - 0x9245bfff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9246a000 - 0x92520fff com.apple.CoreServices.OSServices 209 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92521000 - 0x9258ffff com.apple.iLifeMediaBrowser 1.0.3 (194) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x92590000 - 0x925c6fff com.apple.SystemConfiguration 1.9.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x925c7000 - 0x92790fff com.apple.security 5.0 (31122) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92791000 - 0x927affff com.apple.QuickLookFramework 1.0 (168.0) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x927b0000 - 0x927b8fff com.apple.DiskArbitration 2.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x927b9000 - 0x927bdfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927be000 - 0x92a97fff com.apple.CoreServices.CarbonCore 783 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92a98000 - 0x92b2bfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92b2c000 - 0x92b42fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92b43000 - 0x92b79fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x92b7a000 - 0x92b7bfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x92b7c000 - 0x92bbbfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92bbc000 - 0x92c33fff com.apple.CFNetwork 217 (219) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92d14000 - 0x92e15fff com.apple.PubSub 1.0.0 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92e16000 - 0x92e66fff com.apple.HIServices 1.6.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e67000 - 0x92f10fff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92f11000 - 0x92fdcfff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92fdd000 - 0x93098fff com.apple.WebKit 5523.10.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93099000 - 0x930cbfff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x930cc000 - 0x933dafff com.apple.QuickTime 7.2.1 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x933db000 - 0x9340cfff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93413000 - 0x934f4fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x934f5000 - 0x9357cfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9357d000 - 0x93c14fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93c15000 - 0x93c91fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93c92000 - 0x93cb0fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93cb1000 - 0x93ce0fff com.apple.AE 402 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93ce1000 - 0x93cf1fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93cf2000 - 0x93d09fff com.apple.datadetectors 1.0 (66.0) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x93d0a000 - 0x93d15fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93d16000 - 0x93e94fff com.apple.AddressBook.framework 4.1 (687) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x93e95000 - 0x93ee5fff com.apple.framework.familycontrols 1.0 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93ee6000 - 0x93ee6fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93ee7000 - 0x93f5bfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93f5c000 - 0x93f95fff com.apple.securityfoundation 3.0 (32585) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93f96000 - 0x93f98fff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93f99000 - 0x93fa0fff libbsm.dylib /usr/lib/libbsm.dylib
    0x93fa1000 - 0x93fdbfff com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93fdc000 - 0x94083fff com.apple.QD 3.11.49 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94084000 - 0x94084fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94085000 - 0x94085fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94086000 - 0x940c8fff com.apple.NavigationServices 3.5 (160) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x940c9000 - 0x940f1fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x940f2000 - 0x940f4fff com.apple.QuickTimeH264.component 7.2.1 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9424b000 - 0x94a45fff com.apple.AppKit 6.5 (949) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94a46000 - 0x94a73fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94a74000 - 0x94a79fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94a7a000 - 0x94ae9fff com.apple.PDFKit 2.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94aea000 - 0x94b27fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94b34000 - 0x94b3dfff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94b3e000 - 0x94bdcfff com.apple.QuickTimeImporters.component 7.2.1 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x94bdd000 - 0x94c57fff com.apple.print.framework.PrintCore 5.5 (245) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94c58000 - 0x94d1ffff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94d20000 - 0x94dacfff com.apple.LaunchServices 283 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94dad000 - 0x94e06fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94e07000 - 0x94e2bfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94e2c000 - 0x9523cfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9523d000 - 0x95373fff com.apple.imageKit 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95374000 - 0x9567afff com.apple.HIToolbox 1.5.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9567b000 - 0x957adfff com.apple.CoreFoundation 6.5 (476) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x958d8000 - 0x9591cfff com.apple.DirectoryService.PasswordServerFramework 3.0 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9591d000 - 0x9593bfff com.apple.DirectoryService.Framework 3.5 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9593c000 - 0x9595ffff com.apple.CoreMediaPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x95960000 - 0x95967fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95968000 - 0x95968fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95976000 - 0x959b7fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x959b8000 - 0x959f4fff com.apple.CoreMediaIOServicesPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x959f5000 - 0x95a7ffff com.apple.QTKit 7.2.1 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95a80000 - 0x95a80fff com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95a81000 - 0x95a8dfff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95a8e000 - 0x95b3efff edu.mit.Kerberos 6.0.11 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95b49000 - 0x95edefff com.apple.QuartzCore 1.5.0 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95edf000 - 0x95edffff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95ee0000 - 0x95ee3fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95ee4000 - 0x96cdcfff com.apple.QuickTimeComponents.component 7.2.1 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents

  • Tecra M10-10z - 3G does not work after Win 7 installation

    Tecra M10-10z I have installed Windows 7 pro 64bit
    Everything is configured correctly, but connection 3G does not work: the message is " no network"
    with Windows XP is ok.
    I did not find firmware updates or similar.
    Is there someone who can help me?
    tks

    Hi
    In order to use the 3G you should firstly check if the 3G ericsson module was properly installed.
    In case there is an yellow exclamation mark visible in the device manager, the 3G driver should be reinstalled.
    I found on the Toshiba EU driver page:
    [Ericsson 3G Win 7 driver|http://www.toshiba.eu/innovation/download_driver_details.jsp?service=EU&selCategory =2&selFamily=5&selSeries=148&selProduct=813&selSho rtMod=null&language=13&selOS=30&selType=295&yearup load=&monthupload=&dayupload=&useDate=null&mode=al lMachines&search=&action=search&macId=&country=all &selectedLanguage=13&type=295&page=1&ID=71930&OSID =-1&driverLanguage=42]
    Furthermore ensure that the 3G RF Power Control Utility has been installed properly.
    The 3G RF Power Control Utility" activates your 3G on startup.
    This tool can be found here:
    [3G RF Power Control Utility for Win 7 64bit|http://www.toshiba.eu/innovation/download_driver_details.jsp?service=EU&selCategory =2&selFamily=5&selSeries=148&selProduct=813&selSho rtMod=null&language=13&selOS=30&selType=322&yearup load=&monthupload=&dayupload=&useDate=null&mode=al lMachines&search=&action=search&macId=&country=all &selectedLanguage=13&type=322&page=1&ID=73658&OSID =-1&driverLanguage=42]
    Hope the 3G network would functions after the reinstallation of both tools.

Maybe you are looking for

  • Can the Calendar app be/get smarter?

    The adding of an event within a Blackberry couldn't be simpler and the opposite is to be said about the iPhones Calendar ... unless I'm missing something. I would like to add an event or reminder by touching a time in the "day view" and just start ty

  • My iPod touch 3rd gen is not updating to the latest software, iTunes keeps saying that there was a problem connecting to the update server...

    I don't think I ever registered my 3rd gen iPod. I was never able to update it past its original software because iTunes could never recognize it. Unfortunately, my wife had installed data on it (old & recently purchased) so I've been very hesitant t

  • Can I use an iMac to control a mac pro

    I have a 2008 Mac pro that's working well. Since I'm doing a lot a video creation that needs to go to DVD I'm not ready to give it up. but I see the need for a more modern machine for some of the newer software I would like to use. so here is the que

  • Acrobat 9 Pro and Distiller

    All, I have an application use Sybas DataWindow PS as printer to create PDF file that was use acrobat Distiller as driver. It works fine for long time until I updated to Acrobat 9 Pro. How can I set Acrobat Distiller 9.3 as standalone utility for it?

  • My noctua d14 is running to fast on my p67a-g45-b3

    ive just installed noctua d14 with the low noise adapter, but its still to noisy, its spinning around 920rpm how do i lower it more? and what exactly is smart fan target in bios?